:root {
  --ink: #26272a;
  --muted: #74767a;
  --soft: #f4f4f2;
  --softest: #fafafa;
  --white: #ffffff;
  --pill: rgba(55, 61, 57, 0.72);
  --shadow: rgba(0, 0, 0, 0.16);
  --page-rail: max(48px, calc((100vw - 1736px) / 2));
  --gallery-thumb-size: 256px;
  --gallery-gap: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

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

button {
  border: 0;
  font: inherit;
}

.hero {
  position: relative;
  height: 372px;
  min-height: 372px;
  overflow: hidden;
  color: var(--white);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.16) 100%);
}

.site-header {
  position: absolute;
  top: 0;
  left: var(--page-rail);
  right: var(--page-rail);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.site-logo {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 24px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 550;
  line-height: 17px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--white);
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

.mobile-menu-button {
  appearance: none;
}

@media (min-width: 761px) {
  .mobile-menu-button,
  .mobile-menu {
    display: none !important;
  }
}

.hero__copy {
  position: absolute;
  top: 140px;
  left: var(--page-rail);
  right: var(--page-rail);
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 12px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  font-size: 12px;
  font-weight: 550;
  line-height: 18px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 52px;
  font-weight: 550;
  line-height: 56px;
}

.hero__subline {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 550;
  line-height: 17px;
}

.homes {
  padding: 36px var(--page-rail) 36px;
}

.clacton-signature {
  --signature-accent: #9a7850;
  padding: 76px var(--page-rail) 82px;
  border-top: 1px solid #e5ded2;
  background: #f4f0e8;
}

.clacton-signature__header {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  align-items: end;
  gap: clamp(48px, 8vw, 130px);
  max-width: 1180px;
  margin: 0 auto 48px;
}

.clacton-signature__eyebrow {
  margin: 0 0 10px;
  color: var(--signature-accent);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.18em;
  line-height: 16px;
  text-transform: uppercase;
}

.clacton-signature h2 {
  margin: 0;
  color: #27251f;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.clacton-signature__intro {
  max-width: 540px;
  margin: 0 0 3px;
  color: #686159;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 18px;
  line-height: 29px;
}

.clacton-signature__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(94, 77, 57, 0.2);
  border-bottom: 1px solid rgba(94, 77, 57, 0.2);
}

.clacton-signature__item {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-width: 0;
  min-height: 210px;
  padding: 22px clamp(22px, 2.4vw, 40px);
}

.clacton-signature__item + .clacton-signature__item {
  border-left: 1px solid rgba(94, 77, 57, 0.2);
}

.clacton-signature__icon {
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(154, 120, 80, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.clacton-signature__icon img {
  display: block;
  width: 134px;
  height: 134px;
  object-fit: contain;
}

.clacton-signature__icon--pier img {
  width: 140px;
  height: 140px;
}

.clacton-signature__copy {
  min-width: 0;
}

.clacton-signature__copy p {
  margin: 0 0 8px;
  color: var(--signature-accent);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
  line-height: 14px;
}

.clacton-signature__copy h3 {
  margin: 0 0 7px;
  color: #27251f;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 25px;
}

.clacton-signature__copy span {
  display: block;
  color: #797168;
  font-size: 13px;
  line-height: 19px;
}

.clacton-signature__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: fit-content;
  margin: 26px max(0px, calc((100% - 1180px) / 2)) 0 auto;
  color: #4b4339;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
}

.clacton-signature__link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--signature-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 160ms ease;
}

.clacton-signature__link:hover svg {
  transform: translateX(3px);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 32px;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 550;
  line-height: 20px;
}

.property-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.property-block {
  position: relative;
  min-width: 0;
  padding: 20px;
  border: 1px solid #e3e3df;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.property-block[data-property-url] {
  cursor: pointer;
}

.property-block[data-property-url]:focus-visible {
  outline: 2px solid #26272a;
  outline-offset: 4px;
}

.property-gallery {
  display: grid;
  min-width: 0;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--gallery-gap) * 2)) / 2.5);
  grid-template-columns: none;
  gap: var(--gallery-gap);
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.property-gallery::-webkit-scrollbar {
  display: none;
}

.gallery-shell {
  position: relative;
  width: 100%;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #222326;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
  transition:
    background 150ms ease,
    opacity 150ms ease,
    transform 150ms ease;
}

.gallery-nav--prev {
  left: 12px;
}

.gallery-nav--next {
  right: 12px;
}

.gallery-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.gallery-nav:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.03);
}

.property-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #ddd;
  scroll-snap-align: start;
}

.property-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.04);
}

.reserve-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: #26272a;
  color: var(--white);
  font-size: 14px;
  font-weight: 550;
  line-height: 17px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 8px 24px rgba(0, 0, 0, 0.1);
}

.reserve-button:hover {
  background: #111214;
}

.property-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.property-copy {
  min-width: 0;
}

.property-summary h3 {
  min-height: 17px;
  margin: 0 0 5px;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 550;
  line-height: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-thumb .luxury-pill {
  top: 12px;
  left: 12px;
  gap: 6px;
  min-height: 28px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 17px;
}

.property-thumb .luxury-pill svg {
  width: 16px;
  height: 16px;
}

.property-thumb .heart-button {
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
}

.luxury-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(56, 63, 66, 0.72);
  color: var(--white);
  font-size: 14px;
  font-weight: 550;
  line-height: 17px;
  backdrop-filter: blur(10px);
}

.luxury-pill svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.heart-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  filter: drop-shadow(0 3px 9px rgba(0, 0, 0, 0.22));
}

.heart-button svg {
  width: 100%;
  height: 100%;
  fill: rgba(255, 255, 255, 0);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transition:
    fill 150ms ease,
    transform 150ms ease;
}

.heart-button.is-saved svg {
  fill: rgba(255, 255, 255, 0.92);
}

.property-card__meta,
.property-card__price {
  margin: 0;
  color: #74767a;
  font-size: 14px;
  font-weight: 450;
  line-height: 17px;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #686a6d;
}

.rating svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.info-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  vertical-align: 1px;
}

.booking-offers {
  position: relative;
  padding: 0 var(--page-rail) 72px;
  scroll-margin-top: 20px;
}

.booking-offers__anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.booking-offers__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 24px;
  min-width: 0;
  max-width: 100%;
  padding: 28px;
  border: 1px solid #e3e3df;
  border-radius: 30px;
  background: var(--white);
}

.booking-offers__header {
  align-self: center;
  max-width: 360px;
}

.booking-offers__header p {
  margin: 0 0 10px;
  color: #74767a;
  font-size: 12px;
  font-weight: 650;
  line-height: 16px;
  text-transform: uppercase;
}

.booking-offers__header h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 550;
  line-height: 36px;
}

.booking-offers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.booking-offer {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-content: start;
  min-width: 0;
  max-width: 100%;
  min-height: 238px;
  padding: 22px;
  border: 1px solid #e8e8e5;
  border-radius: 22px;
  background: #fafaf8;
}

.booking-offer__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #26272a;
  color: var(--white);
}

.booking-offer__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.booking-offer__copy {
  min-width: 0;
}

.booking-offer__copy h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
}

.booking-offer__copy p {
  margin: 0;
  color: #686a6d;
  font-size: 14px;
  line-height: 22px;
  overflow-wrap: break-word;
}

.booking-offer__button {
  grid-column: 2;
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 40px;
  margin-top: 20px;
  padding: 0 18px;
  border-radius: 999px;
  background: #26272a;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 12px 30px rgba(0, 0, 0, 0.12);
}

.booking-offer__button:hover {
  background: #111214;
}

.property-detail-section {
  padding: 0 var(--page-rail) 88px;
}

.property-detail {
  padding-top: 48px;
  border-top: 1px solid #e8e8e5;
}

.property-detail,
.property-detail__copy,
.copy-section,
.amenities-panel {
  min-width: 0;
}

.property-detail__intro {
  max-width: 880px;
}

.property-detail__kicker {
  margin: 0 0 12px;
  color: #74767a;
  font-size: 14px;
  font-weight: 550;
  line-height: 18px;
}

.property-detail h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  font-weight: 550;
  letter-spacing: 0;
  line-height: 40px;
}

.property-stat-line {
  margin: 14px 0 0;
  color: #74767a;
  font-size: 16px;
  font-weight: 450;
  line-height: 22px;
}

.property-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 72px;
  margin-top: 42px;
}

.copy-section + .copy-section {
  margin-top: 30px;
}

.copy-section h3,
.amenities-panel h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 550;
  line-height: 25px;
}

.copy-section p {
  margin: 0;
  color: #56585c;
  font-size: 16px;
  font-weight: 450;
  line-height: 26px;
  overflow-wrap: break-word;
}

.copy-section p + p {
  margin-top: 14px;
}

.amenities-panel {
  min-width: 0;
  padding-top: 2px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 38px;
  margin-top: 22px;
}

.amenity-group h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 550;
  line-height: 18px;
}

.amenity-group ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: #74767a;
  font-size: 14px;
  font-weight: 450;
  line-height: 19px;
  list-style: none;
}

.home-page .property-detail-section {
  display: none;
}

.property-page {
  background: var(--white);
}

.property-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1260px, calc(100% - 96px));
  height: 78px;
  margin: 0 auto;
  border-bottom: 1px solid #efefec;
}

.property-page .site-logo {
  color: var(--ink);
  text-shadow: none;
}

.property-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: #4f5154;
  font-size: 14px;
  font-weight: 550;
  line-height: 18px;
}

.property-nav a {
  white-space: nowrap;
}

.property-nav a:hover {
  color: var(--ink);
}

.listing-detail-main {
  width: min(1260px, calc(100% - 96px));
  margin: 0 auto;
  padding: 64px 0 96px;
}

.listing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(360px, 420px);
  justify-content: center;
  align-items: start;
  gap: clamp(56px, 8vw, 110px);
}

.detail-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.detail-photo-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #ddd;
}

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

.detail-photo-tile--action::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.2));
  content: "";
  pointer-events: none;
}

.photo-action {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 550;
  line-height: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.photo-action--dark {
  left: 18px;
  right: auto;
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.booking-card {
  position: relative;
  padding: 34px;
  border: 1px solid #e5e5e2;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.booking-price {
  margin: 0 0 28px;
  color: #56585c;
  font-size: 16px;
  line-height: 22px;
}

.booking-price strong {
  color: var(--ink);
  font-size: 34px;
  font-weight: 550;
  line-height: 38px;
}

.booking-date-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.booking-field {
  display: grid;
  gap: 7px;
  min-height: 78px;
  padding: 16px 18px;
  border: 1px solid #e6e6e3;
  border-radius: 10px;
  cursor: pointer;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.booking-field:focus-within {
  border-color: #078144;
  box-shadow: 0 0 0 3px rgba(7, 129, 68, 0.1);
}

.booking-field:focus-visible,
.booking-field--active {
  border-color: #078144;
  box-shadow: 0 0 0 3px rgba(7, 129, 68, 0.12);
  outline: none;
}

.booking-field--wide {
  margin-top: 10px;
}

.booking-field span {
  color: #6f7175;
  font-size: 14px;
  line-height: 18px;
}

.booking-field strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 450;
  line-height: 22px;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  outline: 0;
}

.booking-field input[type="date"] {
  color-scheme: light;
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

.booking-field--date input {
  display: none;
}

.booking-date-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-width: 0;
  color: var(--ink);
}

.booking-field .booking-date-value {
  overflow: hidden;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-date-trigger svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.booking-calendar {
  position: absolute;
  z-index: 30;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid #dededb;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.985);
  transform-origin: top center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.booking-calendar[hidden] {
  display: none;
}

.booking-calendar.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.booking-calendar__header {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 8px;
}

.booking-calendar__header strong {
  color: var(--ink);
  font-size: 21px;
  font-weight: 650;
  line-height: 28px;
  text-align: center;
}

.booking-calendar__nav {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: #222326;
  cursor: pointer;
  transition:
    background 150ms ease,
    transform 150ms ease;
}

.booking-calendar__nav:hover {
  background: #f1f1ef;
  transform: translateY(-1px);
}

.booking-calendar__nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.booking-calendar__weekdays,
.booking-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
}

.booking-calendar__weekdays {
  color: #707276;
  font-size: 14px;
  font-weight: 650;
  line-height: 18px;
  text-align: center;
}

.booking-calendar__days {
  row-gap: 4px;
}

.booking-calendar__day {
  display: grid;
  place-items: center;
  width: 100%;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 550;
  line-height: 22px;
  transition:
    background 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.booking-calendar__day:hover:not(:disabled) {
  background: #f1f1ef;
  transform: translateY(-1px);
}

.booking-calendar__day.is-muted {
  color: #babcc0;
}

.booking-calendar__day.is-in-range {
  border-radius: 12px;
  background: #f2f3f0;
}

.booking-calendar__day.is-selected {
  background: #26272a;
  color: var(--white);
}

.booking-calendar__day:disabled {
  color: #c9cbce;
  cursor: not-allowed;
}

.booking-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  margin-top: 28px;
  border-radius: 999px;
  background: #078144;
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  font-weight: 550;
  line-height: 22px;
}

.booking-reserve[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

.booking-note {
  margin: 20px 0 0;
  color: #707276;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
}

.listing-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(340px, 420px);
  justify-content: center;
  align-items: start;
  gap: clamp(56px, 8vw, 110px);
  margin-top: 76px;
}

.listing-copy,
.listing-amenities {
  min-width: 0;
}

.listing-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e8e8e5;
}

.listing-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 550;
  line-height: 32px;
}

.listing-actions {
  display: flex;
  gap: 10px;
}

.round-action {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f3f1;
  color: #222326;
}

.round-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.host-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid #e8e8e5;
}

.host-mark {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f4f4f2;
  color: var(--ink);
}

.host-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.host-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 550;
  line-height: 18px;
}

.host-row p {
  margin: 0;
  color: #74767a;
  font-size: 13px;
  line-height: 18px;
}

.listing-copy .copy-section {
  margin-top: 34px;
}

.listing-copy .copy-section h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 550;
  line-height: 28px;
}

.listing-amenities h2 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 550;
  line-height: 32px;
}

.amenity-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenity-preview li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 16px;
  line-height: 22px;
}

.amenity-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.full-amenities {
  margin-top: 32px;
}

.full-amenities summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #222326;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 550;
  line-height: 18px;
  list-style: none;
}

.full-amenities summary::-webkit-details-marker {
  display: none;
}

.full-amenities[open] summary {
  margin-bottom: 26px;
}

.site-footer {
  border-top: 1px solid #e8e8e5;
  background: var(--softest);
  color: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(180px, 260px) minmax(0, 1.55fr);
  min-height: 360px;
  padding: 66px var(--page-rail) 84px;
}

.footer-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #252629;
}

.footer-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.footer-nav {
  grid-column: 2;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 550;
  line-height: 20px;
}

.footer-column a {
  color: #74767a;
  font-size: 16px;
  font-weight: 450;
  line-height: 20px;
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 92px;
  padding: 0 var(--page-rail);
  border-top: 1px solid #e8e8e5;
  color: #74767a;
  font-size: 16px;
  font-weight: 450;
  line-height: 20px;
}

.footer-bottom p {
  margin: 0;
}

.chat-button {
  position: fixed;
  right: 31px;
  bottom: 54px;
  z-index: 5;
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #f3f3f1;
  color: #222326;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  transition:
    transform 150ms ease,
    background 150ms ease,
    opacity 150ms ease;
}

.chat-button svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.chat-button:hover {
  transform: translateY(-1px);
  background: #e9e9e6;
}

.heart-button:hover svg {
  transform: scale(1.05);
}

/* Reservation flow */

[hidden] {
  display: none !important;
}

.reservation-page {
  min-height: 100vh;
  background: #fbfbfa;
}

.reservation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 80px));
  height: 80px;
  margin: 0 auto;
  border-bottom: 1px solid #e9e9e6;
}

.reservation-header .site-logo {
  color: var(--ink);
  text-shadow: none;
}

.reservation-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #dededb;
  border-radius: 50%;
  background: var(--white);
  transition: background 150ms ease;
}

.reservation-close:hover {
  background: #f1f1ef;
}

.reservation-close svg,
.reservation-back svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.reservation-main {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding: 64px 0 100px;
}

.reservation-heading {
  margin-bottom: 46px;
}

.reservation-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 36px;
  color: #636568;
  font-size: 14px;
  font-weight: 550;
}

.reservation-eyebrow {
  margin: 0 0 10px;
  color: #078144;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 18px;
  text-transform: uppercase;
}

.reservation-heading h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.reservation-heading > p:last-child {
  margin: 14px 0 0;
  color: #66686b;
  font-size: 17px;
  line-height: 25px;
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(340px, 410px);
  align-items: start;
  justify-content: space-between;
  gap: 64px;
}

.reservation-form {
  min-width: 0;
}

.stay-type-fieldset {
  margin: 0;
  padding: 0 0 38px;
  border: 0;
  border-bottom: 1px solid #e4e4e1;
}

.stay-type-fieldset legend,
.form-section-heading h2 {
  margin: 0 0 20px;
  padding: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
}

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

.stay-type-option {
  position: relative;
  cursor: pointer;
}

.stay-type-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.stay-type-option > span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 0 16px;
  border: 1px solid #dededb;
  border-radius: 12px;
  background: var(--white);
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.stay-type-option svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: #696b6e;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.stay-type-option strong {
  font-size: 15px;
  font-weight: 600;
}

.stay-type-option input:checked + span {
  border-color: #078144;
  background: #f4faf6;
  box-shadow: 0 0 0 1px #078144;
}

.stay-type-option input:checked + span svg {
  stroke: #078144;
}

.stay-type-option input:focus-visible + span {
  outline: 3px solid rgba(7, 129, 68, 0.18);
  outline-offset: 2px;
}

.guest-details {
  padding: 38px 0 34px;
}

.form-section-heading {
  margin-bottom: 22px;
}

.form-section-heading h2 {
  margin-bottom: 5px;
}

.form-section-heading p {
  margin: 0;
  color: #707276;
  font-size: 14px;
  line-height: 20px;
}

.form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field span {
  color: #44464a;
  font-size: 14px;
  font-weight: 550;
  line-height: 18px;
}

.form-field input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid #d9d9d6;
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.form-field input:focus {
  border-color: #078144;
  box-shadow: 0 0 0 3px rgba(7, 129, 68, 0.12);
}

.reservation-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  background: #078144;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  font-weight: 650;
  transition:
    background 150ms ease,
    transform 150ms ease;
}

.reservation-submit:hover {
  background: #066f3b;
  transform: translateY(-1px);
}

.reservation-payment-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
  color: #74767a;
  font-size: 13px;
  line-height: 19px;
  text-align: center;
}

.reservation-payment-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.reservation-message {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #b9ddc7;
  border-radius: 10px;
  background: #f1faf4;
  color: #245c39;
  font-size: 14px;
  line-height: 20px;
}

.reservation-message strong,
.reservation-message span {
  display: block;
}

.trip-summary {
  position: sticky;
  top: 32px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid #e0e0dd;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
}

.trip-summary h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
  line-height: 24px;
}

.trip-property {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8e5;
}

.trip-property img {
  display: block;
  width: 92px;
  height: 92px;
  border-radius: 10px;
  object-fit: cover;
}

.trip-property div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.trip-property strong {
  font-size: 16px;
  font-weight: 650;
  line-height: 21px;
}

.trip-property span {
  color: #6a6c70;
  font-size: 14px;
  line-height: 20px;
}

.trip-property small {
  margin-top: 3px;
  color: #7a7c7f;
  font-size: 12px;
  line-height: 17px;
}

.trip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid #e8e8e5;
}

.trip-row div {
  display: grid;
  gap: 4px;
}

.trip-row span,
.trip-total span {
  color: #76787b;
  font-size: 13px;
  line-height: 18px;
}

.trip-row strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 550;
  line-height: 20px;
}

.trip-row a {
  min-width: 70px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1f1ef;
  color: #393a3d;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.trip-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
}

.trip-total strong {
  color: var(--ink);
  font-size: 23px;
  font-weight: 650;
  line-height: 28px;
}

.trip-assurance {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  margin: 2px -28px -28px;
  padding: 20px 28px 22px;
  border-top: 1px solid #e8e8e5;
  background: #fafaf8;
}

.trip-assurance svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #078144;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.trip-assurance div {
  display: grid;
  gap: 4px;
}

.trip-assurance strong {
  font-size: 14px;
  font-weight: 650;
  line-height: 19px;
}

.trip-assurance span {
  color: #6f7175;
  font-size: 13px;
  line-height: 19px;
}

@media (max-width: 1180px) {
  .property-blocks {
    grid-template-columns: 1fr;
  }

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

  .booking-offers__header {
    max-width: 680px;
  }

  .clacton-signature__item {
    grid-template-columns: 108px minmax(0, 1fr);
    padding: 22px;
  }

  .clacton-signature__icon {
    width: 108px;
    height: 108px;
  }

  .clacton-signature__icon img,
  .clacton-signature__icon--pier img {
    width: 102px;
    height: 102px;
  }

  .listing-hero-grid,
  .listing-content-grid {
    grid-template-columns: minmax(0, 720px);
    justify-content: center;
    gap: 44px;
  }

  .booking-card {
    max-width: 520px;
    width: 100%;
  }

  .property-detail__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .property-thumb .luxury-pill {
    max-width: calc(100% - 34px);
    padding: 0 7px;
  }

  .reservation-layout {
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 42px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-rail: 24px;
    --gallery-thumb-size: 216px;
  }

  .hero {
    height: 322px;
    min-height: 322px;
  }

  .clacton-signature {
    padding: 58px var(--page-rail) 62px;
  }

  .clacton-signature__header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .clacton-signature h2 {
    font-size: 40px;
  }

  .clacton-signature__intro {
    font-size: 16px;
    line-height: 25px;
  }

  .clacton-signature__grid {
    grid-template-columns: 1fr;
  }

  .clacton-signature__item {
    grid-template-columns: 100px minmax(0, 1fr);
    min-height: 142px;
    padding: 16px 0;
  }

  .clacton-signature__item + .clacton-signature__item {
    border-top: 1px solid rgba(94, 77, 57, 0.2);
    border-left: 0;
  }

  .clacton-signature__icon {
    width: 92px;
    height: 92px;
  }

  .clacton-signature__icon img,
  .clacton-signature__icon--pier img {
    width: 88px;
    height: 88px;
  }

  .clacton-signature__link {
    margin-top: 24px;
  }

  .site-header {
    top: 0;
    left: var(--page-rail);
    right: var(--page-rail);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    align-items: start;
    gap: 10px 16px;
    height: auto;
    min-height: 106px;
    padding-top: max(26px, env(safe-area-inset-top));
  }

  .site-logo {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    font-size: 20px;
    line-height: 22px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 24px;
    max-width: 100%;
    font-size: 12px;
    line-height: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav__link--priority {
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.82);
  }

  .site-nav__link--secondary,
  .site-nav a:nth-child(n + 3) {
    display: none !important;
  }

  .mobile-menu-button {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    place-items: center;
    align-self: start;
    justify-self: end;
    width: 34px;
    height: 34px;
    margin-top: -4px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    background: rgba(30, 32, 34, 0.48);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    backdrop-filter: blur(10px);
  }

  .mobile-menu-button span {
    display: block;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-menu {
    position: absolute;
    top: 64px;
    right: 0;
    z-index: 4;
    display: grid;
    min-width: min(242px, calc(100vw - 48px));
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(28, 29, 31, 0.92);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 150ms ease,
      transform 150ms ease;
    backdrop-filter: blur(14px);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .site-header.is-menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 12px 14px;
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    white-space: normal;
  }

  .mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.09);
    color: var(--white);
  }

  .property-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 48px);
    height: auto;
    min-height: 92px;
    padding: 18px 0;
  }

  .property-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 12px;
    line-height: 15px;
  }

  .listing-detail-main {
    width: calc(100% - 48px);
    padding: 34px 0 68px;
  }

  .listing-hero-grid,
  .listing-content-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .detail-photo-grid {
    gap: 6px;
  }

  .photo-action {
    right: 12px;
    bottom: 12px;
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .photo-action--dark {
    left: 12px;
    right: auto;
  }

  .booking-card {
    max-width: none;
    padding: 24px;
  }

  .booking-price strong {
    font-size: 28px;
    line-height: 34px;
  }

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

  .reservation-header {
    width: calc(100% - 48px);
    height: 72px;
  }

  .reservation-header .site-logo {
    font-size: 19px;
  }

  .reservation-main {
    width: calc(100% - 48px);
    padding: 36px 0 68px;
  }

  .reservation-heading {
    margin-bottom: 34px;
  }

  .reservation-back {
    margin-bottom: 26px;
  }

  .reservation-heading h1 {
    font-size: 40px;
  }

  .reservation-layout {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .trip-summary {
    position: static;
    order: -1;
    width: 100%;
  }

  .reservation-form {
    width: 100%;
  }

  .stay-type-options {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .stay-type-option > span {
    min-height: 58px;
  }

  .form-fields {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .listing-content-grid {
    margin-top: 48px;
  }

  .listing-heading-row {
    flex-direction: column;
    gap: 18px;
  }

  .listing-copy h1,
  .listing-amenities h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .amenity-preview {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero__copy {
    top: 114px;
    left: var(--page-rail);
    right: var(--page-rail);
    max-width: none;
  }

  .eyebrow {
    max-width: 100%;
    min-height: 28px;
    padding: 0 9px;
    font-size: 12px;
    line-height: 18px;
  }

  .hero h1 {
    max-width: none;
    font-size: 30px;
    line-height: 36px;
  }

  .hero__subline {
    max-width: none;
    font-size: 14px;
    line-height: 17px;
  }

  .homes {
    padding: 44px 0 32px var(--page-rail);
  }

  .booking-offers {
    padding: 0 0 64px;
  }

  .booking-offers__inner {
    width: auto;
    margin: 0 var(--page-rail);
    gap: 22px;
    padding: 18px;
    border-radius: 24px;
    overflow: hidden;
  }

  .booking-offers__header h2 {
    font-size: 24px;
    line-height: 30px;
  }

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

  .booking-offer {
    grid-template-columns: 1fr;
    min-height: 0;
    width: 100%;
    padding: 16px;
    border-radius: 18px;
    overflow: hidden;
  }

  .booking-offer__icon {
    width: 40px;
    height: 40px;
  }

  .booking-offer__icon svg {
    width: 21px;
    height: 21px;
  }

  .booking-offer__button {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
  }

  .section-heading {
    align-items: center;
    padding-right: var(--page-rail);
    margin-bottom: 16px;
  }

  .section-heading h2 {
    font-size: 16px;
    line-height: 20px;
  }

  .property-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-right: var(--page-rail);
  }

  .property-block {
    min-height: 0;
    padding: 16px;
    border-radius: 24px;
  }

  .property-gallery {
    grid-auto-columns: 216px;
    padding-bottom: 4px;
  }

  .property-thumb {
    border-radius: 8px;
  }

  .gallery-nav {
    width: 34px;
    height: 34px;
  }

  .gallery-nav--prev {
    left: 8px;
  }

  .gallery-nav--next {
    right: 8px;
  }

  .reserve-button {
    top: 16px;
    right: 16px;
    align-self: flex-start;
    min-width: 82px;
    height: 32px;
    padding: 0 14px;
    font-size: 14px;
  }

  .property-summary {
    flex-direction: column;
    gap: 12px;
  }

  .luxury-pill {
    min-height: 28px;
    padding: 0 12px;
    font-size: 14px;
  }

  .property-card__meta,
  .property-card__price {
    font-size: 14px;
  }

  .property-detail-section {
    width: calc(100vw - (var(--page-rail) * 2));
    max-width: calc(100vw - (var(--page-rail) * 2));
    margin: 0 var(--page-rail);
    padding: 0 0 68px;
  }

  .property-detail {
    padding-top: 40px;
  }

  .property-detail__copy,
  .property-detail__layout,
  .amenities-panel {
    width: 100%;
    max-width: 100%;
  }

  .property-detail h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .property-stat-line {
    font-size: 14px;
    line-height: 20px;
  }

  .property-detail__layout {
    gap: 40px;
    margin-top: 34px;
  }

  .copy-section h3,
  .amenities-panel h3 {
    font-size: 18px;
    line-height: 23px;
  }

  .copy-section p {
    font-size: 15px;
    line-height: 24px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .chat-button {
    right: 18px;
    bottom: 24px;
    width: 62px;
    height: 62px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding: 46px var(--page-rail) 68px;
  }

  .footer-nav {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    min-height: 112px;
    padding: 0 var(--page-rail);
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 420px) {
  :root {
    --page-rail: 24px;
  }

  .property-gallery {
    padding-right: 0;
  }

  .property-thumb .luxury-pill {
    max-width: calc(100% - 56px);
    overflow: hidden;
  }
}

/* Things to do blog */
.blog-page {
  --blog-cream: #f5f0e7;
  --blog-sand: #e8d5b8;
  --blog-rust: #b65634;
  --blog-blue: #21485c;
  background: #fffdf9;
}

.blog-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
}

.blog-hero__image,
.blog-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blog-hero__image {
  object-fit: cover;
  object-position: center 54%;
}

.blog-hero__shade {
  background:
    linear-gradient(90deg, rgba(12, 25, 32, 0.76) 0%, rgba(12, 25, 32, 0.31) 52%, rgba(12, 25, 32, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, transparent 40%, rgba(0, 0, 0, 0.33) 100%);
}

.blog-hero__copy {
  position: absolute;
  left: var(--page-rail);
  right: var(--page-rail);
  bottom: 84px;
  z-index: 2;
  max-width: 880px;
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-back svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.blog-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.blog-hero__copy > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.blog-page .site-nav a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.blog-article {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding: 88px 0 56px;
}

.article-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: start;
  margin-bottom: 112px;
}

.article-kicker,
.quick-plan__eyebrow {
  margin: 0 0 18px;
  color: var(--blog-rust);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-lead {
  margin: 0 0 24px;
  color: #222d31;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(29px, 3.3vw, 44px);
  line-height: 1.16;
}

.article-intro > div > p:last-child,
.guide-copy > p,
.split-guide__copy > p,
.article-cta > p {
  color: #5e625f;
  font-size: 17px;
  line-height: 1.76;
}

.quick-plan {
  padding: 32px;
  border-radius: 4px 36px 4px 4px;
  background: var(--blog-cream);
}

.quick-plan h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.2;
}

.quick-plan ol {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: plan;
}

.quick-plan li {
  position: relative;
  padding: 0 0 17px 34px;
  border-bottom: 1px solid rgba(38, 39, 42, 0.11);
  color: #62615c;
  font-size: 14px;
  line-height: 1.5;
  counter-increment: plan;
}

.quick-plan li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.quick-plan li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--blog-rust);
  content: "0" counter(plan);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.quick-plan li span {
  display: block;
  margin-bottom: 2px;
  color: #282b2a;
  font-size: 14px;
  font-weight: 700;
}

.guide-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
  margin: 0 0 120px;
}

.guide-section--reverse .guide-media {
  order: 2;
}

.guide-section--reverse .guide-copy {
  order: 1;
}

.guide-media {
  height: 470px;
  margin: 0;
  overflow: hidden;
  border-radius: 3px 64px 3px 3px;
  background: #ddd;
}

.guide-section--reverse .guide-media {
  border-radius: 64px 3px 3px 3px;
}

.guide-media--tall {
  height: 620px;
}

.guide-media img,
.split-guide__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-media--tall img {
  object-position: 52% center;
}

.guide-number {
  margin: 0 0 20px !important;
  color: var(--blog-rust) !important;
  font-size: 12px !important;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.guide-copy h2,
.split-guide__copy h2,
.article-cta h2 {
  margin: 0 0 24px;
  color: #222d31;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.03;
}

.guide-copy > p {
  margin: 0 0 20px;
}

.host-note {
  margin-top: 28px !important;
  padding: 20px 22px;
  border-left: 3px solid var(--blog-rust);
  background: var(--blog-cream);
  color: #4f504c !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.article-quote {
  max-width: 930px;
  margin: 12px auto 132px;
  padding: 0;
  color: var(--blog-blue);
  text-align: center;
}

.article-quote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(36px, 5vw, 62px);
  font-style: italic;
  line-height: 1.16;
}

.split-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 16px 0 120px;
}

.split-guide__copy {
  padding: clamp(36px, 5vw, 64px);
  background: var(--blog-blue);
  color: var(--white);
}

.split-guide__copy--warm {
  background: var(--blog-rust);
}

.split-guide__copy h2,
.split-guide__copy > p,
.split-guide__copy .guide-number {
  color: var(--white) !important;
}

.split-guide__copy h2 {
  font-size: clamp(33px, 3.5vw, 46px);
}

.split-guide__copy > p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 16px;
}

.split-guide__media {
  grid-column: 1 / -1;
  height: 520px;
  margin: 0;
  overflow: hidden;
}

.split-guide__media img {
  object-position: center 52%;
}

.article-cta {
  max-width: 940px;
  margin: 0 auto 88px;
  padding: clamp(48px, 8vw, 88px);
  border-radius: 4px 70px 4px 4px;
  background: var(--blog-cream);
  text-align: center;
}

.article-cta > p {
  max-width: 650px;
  margin: 0 auto 28px;
}

.article-cta .article-kicker {
  margin-bottom: 20px;
}

.article-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #252a2c;
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  transition: transform 150ms ease, background 150ms ease;
}

.article-button:hover {
  background: var(--blog-rust);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .blog-article {
    width: min(100% - 48px, 720px);
  }

  .article-intro,
  .guide-section {
    grid-template-columns: 1fr;
  }

  .article-intro {
    gap: 48px;
    margin-bottom: 88px;
  }

  .guide-section {
    gap: 42px;
    margin-bottom: 96px;
  }

  .guide-section--reverse .guide-media,
  .guide-section--reverse .guide-copy {
    order: initial;
  }

  .guide-section--reverse .guide-media {
    border-radius: 3px 64px 3px 3px;
  }

  .guide-media,
  .guide-media--tall {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .article-quote {
    margin-bottom: 96px;
  }
}

@media (max-width: 760px) {
  .blog-hero {
    min-height: 540px;
  }

  .blog-hero__copy {
    left: var(--page-rail);
    right: var(--page-rail);
    bottom: 54px;
  }

  .blog-hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .blog-hero__copy > p {
    max-width: 430px;
    font-size: 18px;
  }

  .blog-article {
    width: calc(100% - 48px);
    padding-top: 64px;
  }

  .article-intro > div > p:last-child,
  .guide-copy > p,
  .split-guide__copy > p,
  .article-cta > p {
    font-size: 16px;
    line-height: 1.7;
  }

  .split-guide {
    grid-template-columns: 1fr;
    margin-bottom: 88px;
  }

  .split-guide__media {
    grid-column: auto;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .article-cta {
    margin-bottom: 64px;
    padding: 48px 28px;
    border-radius: 4px 44px 4px 4px;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    min-height: 570px;
  }

  .blog-hero__image {
    object-position: 45% center;
  }

  .blog-article {
    width: calc(100% - 40px);
  }

  .quick-plan {
    padding: 26px 24px;
    border-radius: 4px 28px 4px 4px;
  }

  .guide-media,
  .guide-media--tall {
    aspect-ratio: 1 / 1;
    border-radius: 3px 38px 3px 3px;
  }

  .guide-copy h2,
  .split-guide__copy h2,
  .article-cta h2 {
    font-size: 36px;
  }

  .article-quote p {
    font-size: 34px;
  }

  .split-guide__copy {
    padding: 36px 28px;
  }
}

/* Contact page */

.contact-page {
  min-height: 100vh;
  background: var(--white);
}

.contact-page .site-nav a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.contact-hero {
  height: 390px;
  min-height: 390px;
}

.contact-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.contact-hero .hero__image {
  object-position: center 66%;
}

.contact-hero__copy {
  position: absolute;
  top: 142px;
  left: var(--page-rail);
  right: var(--page-rail);
  z-index: 2;
}

.contact-hero__copy h1 {
  margin: 0;
  color: var(--white);
  font-size: 52px;
  font-weight: 550;
  line-height: 56px;
}

.contact-hero__copy > p:last-child {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 550;
  line-height: 19px;
}

.contact-content {
  padding: 76px var(--page-rail) 96px;
}

.contact-content__heading {
  max-width: 680px;
  margin: 0 auto 46px;
  text-align: center;
}

.contact-content__heading > p,
.contact-details__eyebrow {
  margin: 0 0 12px;
  color: #74767a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 16px;
  text-transform: uppercase;
}

.contact-content__heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 38px;
  font-weight: 550;
  line-height: 45px;
}

.contact-content__heading > span {
  display: block;
  margin-top: 15px;
  color: #74767a;
  font-size: 16px;
  line-height: 25px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  align-items: start;
  gap: 30px;
  max-width: 1120px;
  margin: 0 auto;
}

.contact-form-section {
  min-width: 0;
  padding: 38px;
  border: 1px solid #e5e5e2;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
}

.contact-form-heading {
  margin-bottom: 30px;
}

.contact-form-heading h2,
.contact-details h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 550;
  line-height: 28px;
}

.contact-form-heading p,
.contact-details__body > p:not(.contact-details__eyebrow) {
  margin: 9px 0 0;
  color: #74767a;
  font-size: 14px;
  line-height: 22px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field > span {
  color: #56585c;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}

.contact-field > span small {
  color: #94969a;
  font-size: inherit;
  font-weight: 450;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #dededb;
  border-radius: 10px;
  outline: 0;
  background: #fbfbfa;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.contact-field input,
.contact-field select {
  height: 48px;
  padding: 0 14px;
}

.contact-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #737579 50%),
    linear-gradient(135deg, #737579 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.contact-field textarea {
  min-height: 138px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #9a9c9f;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #85878a;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(38, 39, 42, 0.06);
}

.contact-form__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.contact-form__footer p,
.contact-form__status {
  color: #85878a;
  font-size: 12px;
  line-height: 18px;
}

.contact-submit {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: #26272a;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  transition:
    background 150ms ease,
    transform 150ms ease;
}

.contact-submit:hover {
  background: #111214;
  transform: translateY(-1px);
}

.contact-submit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-form__footer p {
  max-width: 220px;
  margin: 0;
}

.contact-form__status {
  margin: 18px 0 0;
  color: #3f4144;
  font-weight: 600;
}

.contact-details {
  overflow: hidden;
  border: 1px solid #e5e5e2;
  border-radius: 18px;
  background: var(--softest);
}

.contact-details__image {
  height: 220px;
  overflow: hidden;
}

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

.contact-details__body {
  padding: 30px;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-direct > a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 13px;
  border: 1px solid #e2e2df;
  border-radius: 12px;
  background: var(--white);
  transition:
    border-color 150ms ease,
    transform 150ms ease;
}

.contact-direct > a:hover {
  border-color: #c8c9c6;
  transform: translateY(-1px);
}

.contact-direct__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f1ef;
  color: #303134;
}

.contact-direct__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-direct small,
.contact-direct strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-direct small {
  margin-bottom: 3px;
  color: #8b8d91;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-direct strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 920px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-details {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  }

  .contact-details__image {
    height: 100%;
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .contact-hero {
    height: 330px;
    min-height: 330px;
  }

  .contact-hero__copy {
    top: 134px;
    left: var(--page-rail);
    right: var(--page-rail);
  }

  .contact-hero__copy h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .contact-content {
    padding: 58px var(--page-rail) 72px;
  }

  .contact-content__heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .contact-content__heading h2 {
    font-size: 30px;
    line-height: 37px;
  }

  .contact-content__heading > span {
    font-size: 15px;
    line-height: 23px;
  }

  .contact-form-section {
    padding: 24px;
    border-radius: 14px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-field--full {
    grid-column: auto;
  }

  .contact-form__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-form__footer p {
    max-width: none;
  }

  .contact-details {
    display: block;
  }

  .contact-details__image {
    height: 200px;
    min-height: 0;
  }

  .contact-details__body {
    padding: 24px;
  }
}
