:root {
  --ink: #1f211f;
  --ink-soft: #62645f;
  --paper: #f7f6f2;
  --paper-deep: #ebe9e3;
  --white: #fffefa;
  --rust: #1f211f;
  --rust-dark: #101110;
  --lime: #f7f6f2;
  --rose: #d7d5cf;
  --sky: #d9dcd7;
  --sand: #e2e0d9;
  --line: rgba(31, 33, 31, 0.22);
  --shadow: 0 28px 80px rgba(31, 33, 31, 0.1);
  --radius: 0.15rem;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(24, 51, 45, 0.08);
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

button,
a,
select,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--lime);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto minmax(12rem, 1fr);
  align-items: center;
  gap: 2rem;
  min-height: 5rem;
  padding: 0 3vw;
  border-bottom: 1px solid transparent;
  background: rgba(243, 241, 235, 0.94);
  backdrop-filter: blur(20px);
  transition: border-color 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 4.35rem;
  border-color: var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  width: max-content;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wordmark small {
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.primary-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 2rem);
}

.primary-nav a,
.footer-nav a {
  position: relative;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.85rem;
}

.language-select {
  min-height: 2.8rem;
  padding: 0 2.2rem 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-cta,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0 1.15rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.button:hover {
  background: var(--rust);
  color: var(--white);
  transform: none;
}

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

.button--ghost {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

main {
  min-height: 70vh;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.display {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3.25rem, 7.6vw, 8.8rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.display em,
.section-title em {
  color: inherit;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
}

.lead {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 300;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 5rem);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
  background: linear-gradient(125deg, #242823 0%, #667067 48%, #1f221f 100%);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(15, 17, 15, 0.22), transparent 35%),
    linear-gradient(90deg, rgba(15, 17, 15, 0.62), rgba(15, 17, 15, 0.08) 72%);
}

.hero-media > img,
.hero-media > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media > video {
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-media.has-video > video {
  opacity: 1;
}

.hero-media.has-video > img {
  opacity: 0;
}

.hero-media.is-missing img {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(11rem, 0.7fr) minmax(0, 1.3fr);
  grid-template-rows: 1fr auto auto;
  align-items: end;
  column-gap: clamp(2rem, 6vw, 8rem);
  width: min(94%, 96rem);
  margin: 0 auto;
  padding: clamp(6rem, 14vh, 10rem) 0 clamp(2.5rem, 6vh, 4.5rem);
}

.hero-copy > .eyebrow {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-top: 0.8rem;
}

.hero .display {
  grid-column: 2;
  grid-row: 2;
  max-width: 11ch;
  text-wrap: balance;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  grid-column: 2;
  grid-row: 3;
  width: 100%;
  margin-top: clamp(2rem, 5vh, 4rem);
}

.hero-bottom .lead {
  color: rgba(255, 253, 248, 0.82);
}

.scroll-cue {
  display: grid;
  place-items: center;
  width: 4.2rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  font-size: 1.2rem;
}

.hero-bottom > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.video-toggle {
  display: grid;
  place-items: center;
  width: 4.2rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  background: rgba(15, 17, 15, 0.28);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.video-toggle[hidden] {
  display: none;
}

.estate-status {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.45fr;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--ink);
  color: var(--white);
}

.estate-status-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 8.5rem;
  padding: 1.3rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.estate-status-item:last-child {
  border-right: 0;
}

.estate-status-item strong {
  max-width: 18rem;
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  font-weight: 300;
  line-height: 1.15;
  text-transform: capitalize;
}

.estate-status-item span {
  color: rgba(251, 250, 246, 0.62);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.estate-status-item .weather-credit {
  color: rgba(251, 250, 246, 0.62);
  font-size: 0.48rem;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  opacity: 0.62;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.estate-status-item .weather-credit:hover,
.estate-status-item .weather-credit:focus-visible {
  opacity: 1;
}

.estate-status-brand strong {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estate-weather-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
}

.estate-weather-line strong:last-child {
  white-space: nowrap;
}

.estate-status-item .estate-date-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.estate-statement {
  display: grid;
  place-items: center;
  min-height: clamp(22rem, 48vw, 42rem);
  padding: 5rem 4vw;
  text-align: center;
}

.estate-statement p {
  max-width: 17ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.6vw, 7.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.estate-statement span {
  margin-top: 1.5rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  padding: clamp(5.5rem, 10vw, 10rem) 4vw;
}

.section--tight {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section--ink {
  background: var(--ink);
  color: var(--white);
}

.section--rust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
  color: var(--ink);
}

.section--rust .button--light {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(17rem, 0.65fr);
  align-items: end;
  gap: 4rem;
  width: min(100%, 92rem);
  margin: 0 auto clamp(3rem, 7vw, 6rem);
}

.section-title {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 6.5rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 2vw, 2rem);
  width: min(100%, 92rem);
  margin: 0 auto;
}

.editorial-card {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--paper-deep);
}

.editorial-card:first-child {
  grid-column: span 7;
}

.editorial-card:last-child {
  grid-column: span 5;
  min-height: 0;
  margin-top: 5rem;
}

.editorial-card--lifestyle img {
  object-position: 60% 54%;
  transform: scale(1.05);
}

.media-frame {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.media-frame::before {
  display: none;
}

.media-frame img {
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: opacity 260ms ease;
}

.media-frame.is-missing img {
  opacity: 0;
}

.card-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0;
  background: rgba(244, 240, 231, 0.9);
  color: var(--ink);
  backdrop-filter: blur(14px);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 92rem);
  margin: 0 auto;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.fact {
  min-height: 13rem;
  padding: 1.5rem;
  border-right: 1px solid currentColor;
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  display: block;
  margin: 2rem 0 0.35rem;
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  font-weight: 300;
}

.fact span {
  color: inherit;
  opacity: 0.72;
}

.guest-impressions {
  padding: clamp(5rem, 9vw, 9rem) 4vw;
  background: var(--paper);
  color: var(--ink);
}

.reviews-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(14rem, 0.5fr);
  gap: 3rem;
  align-items: end;
  width: min(100%, 92rem);
  margin: 0 auto;
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.reviews-intro h2 {
  max-width: 11ch;
  margin: 0.55rem 0 0;
  font-size: clamp(3.2rem, 7.6vw, 8rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.reviews-rating {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-bottom: 0.4rem;
  text-align: right;
}

.reviews-rating strong {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-rating span {
  color: var(--muted);
  font-size: 0.78rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 92rem);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: clamp(21rem, 28vw, 29rem);
  margin: 0;
  padding: clamp(2rem, 3.5vw, 3.5rem);
  border-right: 1px solid var(--line);
}

.review-card:last-child {
  border-right: 0;
}

.review-card p {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(1.65rem, 2.7vw, 3rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.review-card footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 3rem;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-card cite {
  font-style: normal;
}

.review-card footer span {
  color: var(--muted);
}

.review-source {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 92rem);
  margin: 0 auto;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-source:hover {
  color: var(--rust);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 2rem;
  padding: 1.2rem 0;
  animation: drift 28s linear infinite;
}

.marquee span {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  font-style: italic;
}

.marquee i {
  color: var(--rust);
  font-style: normal;
}

@keyframes drift {
  to {
    transform: translateX(-50%);
  }
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  min-height: auto;
}

.page-hero--text {
  grid-template-columns: 1fr;
}

.page-hero--text .page-hero-copy {
  min-height: 34rem;
  padding-right: clamp(4vw, 12vw, 14rem);
}

.page-hero--text .display {
  max-width: 12ch;
}

.page-hero--text .lead {
  max-width: 48rem;
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 42rem;
  padding: clamp(4rem, 8vw, 8rem) 4vw;
  background: var(--paper);
}

.page-hero-copy .display {
  font-size: clamp(3.8rem, 7.4vw, 8.2rem);
}

.page-hero-copy .lead {
  margin-top: 2.5rem;
}

.server-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.server-route-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  width: min(100%, 80rem);
  margin: 3rem auto 0;
}

.server-route-links a {
  color: var(--paper);
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.3em;
}

.page-hero-media {
  min-height: 42rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(3rem, 9vw, 10rem);
  width: min(100%, 82rem);
  margin: 0 auto;
}

.story-grid blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.3vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.story-copy {
  max-width: 40rem;
  font-size: 1.15rem;
}

.story-copy p:first-child::first-letter {
  float: left;
  margin: 0.2rem 0.55rem 0 0;
  color: var(--rust);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.72;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 92rem);
  margin: 0 auto;
}

.amenity {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 17rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
}

.amenity .amenity-number {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.amenity h3 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  font-weight: 300;
}

.amenity p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.gallery-grid {
  display: block;
  column-count: 3;
  column-gap: 1rem;
  width: min(100%, 96rem);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 0;
  margin: 0 0 1rem;
  break-inside: avoid;
  border-radius: 0;
}

.gallery-item img {
  height: auto;
  object-fit: contain;
}

.availability-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.6fr);
  gap: clamp(2rem, 6vw, 7rem);
  width: min(100%, 92rem);
  margin: 0 auto;
}

.calendar-aside {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.calendar-status {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 253, 248, 0.45);
  font-size: 0.9rem;
}

.calendar-status[data-state="live"] {
  border-color: #4f7a53;
  background: #e4efdb;
}

.calendar-status[data-state="preview"] {
  border-color: #b96d43;
  background: #f4dec9;
}

.calendar-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.calendar-button {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.calendar-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.calendar {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}

.calendar h3 {
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
  font-weight: 300;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.calendar-grid span,
.calendar-grid button {
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 0.78rem;
}

.calendar-grid .weekday {
  aspect-ratio: auto;
  min-height: 1.8rem;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-grid .outside {
  opacity: 0;
}

.calendar-grid button:not(:disabled) {
  cursor: pointer;
}

.calendar-grid button:not(:disabled):hover,
.calendar-grid button:not(:disabled):focus-visible {
  background: var(--sand);
  outline: 2px solid var(--rust);
  outline-offset: 1px;
}

.calendar-grid .booked {
  background: var(--rust);
  color: var(--white);
  text-decoration: line-through;
}

.calendar-grid .past {
  color: var(--ink-soft);
  opacity: 0.42;
}

.calendar-grid .selected-range {
  border-radius: 0;
  background: var(--sand);
}

.calendar-grid .selected-start,
.calendar-grid .selected-end {
  background: var(--ink);
  color: var(--white);
}

.calendar-grid .today {
  box-shadow: inset 0 0 0 1px var(--ink);
}

.calendar-legend {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
  font-size: 0.78rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.legend-dot {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.legend-dot--booked {
  border-color: var(--rust);
  background: var(--rust);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 92rem);
  margin: 0 auto;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 32rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.price-card.is-featured {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1.75rem);
}

.price-card h2 {
  margin: 2rem 0 0;
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 400;
}

.price-card .price {
  margin: auto 0 0.5rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-card .price small {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-note {
  width: min(100%, 92rem);
  margin: 2.5rem auto 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.price-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  width: min(100%, 92rem);
  margin: 0 auto;
}

.price-comparison .section-title {
  max-width: 12ch;
}

.price-comparison .lead {
  max-width: 48rem;
  margin-top: 1.75rem;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 72rem);
  margin: 0 auto;
  border-top: 1px solid currentColor;
}

.detail-row {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid currentColor;
}

.detail-row:nth-child(odd) {
  border-right: 1px solid currentColor;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 9vw, 9rem);
  width: min(100%, 82rem);
  margin: 0 auto;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 9vw, 9rem);
  width: min(100%, 82rem);
  margin: 0 auto;
}

.contact-details {
  align-self: end;
}

.contact-details .display {
  max-width: 10ch;
}

.contact-details .lead {
  margin-top: 2rem;
  line-height: 1.65;
}

.contact-details .lead + .eyebrow {
  margin-top: 3.25rem;
}

.contact-details .lead + .eyebrow + p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.contact-details > a:not(.button) {
  display: inline-block;
  margin-top: 1.5rem;
  border-bottom: 1px solid currentColor;
  max-width: 100%;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 300;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-details .button {
  margin-top: 2rem;
}

.server-contact a {
  border-bottom: 1px solid currentColor;
}

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

.contact-fallback {
  align-self: end;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-fallback .lead {
  margin-bottom: 2rem;
  color: rgba(255, 253, 248, 0.82);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

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

.form-field label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.form-field select option {
  color: var(--ink);
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-help {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.booking-estimate {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.booking-estimate > span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-estimate strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
}

.booking-estimate small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
}

.booking-estimate p {
  grid-column: 1 / -1;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.85rem;
}

.form-status[data-state="success"] {
  color: #b9e6bd;
}

.form-status[data-state="error"] {
  color: #ffd0bd;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry-form .button {
  justify-self: start;
  margin-top: 1rem;
}

.enquiry-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: end;
  gap: 2rem;
  width: min(100%, 92rem);
  margin: 0 auto;
}

.cta-panel .section-title {
  max-width: 11ch;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding: clamp(4rem, 8vw, 7rem) 4vw 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--ink);
  color: var(--white);
}

.footer-line {
  max-width: 25rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

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

.footer-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 8rem;
  text-align: right;
}

.footer-meta a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-meta p {
  margin: 0;
  font-size: 0.78rem;
}

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

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    padding-bottom: 1rem;
  }

  .hero {
    min-height: calc(100svh - 8.5rem);
  }

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

  .editorial-card:first-child,
  .editorial-card:last-child {
    grid-column: span 1;
  }

  .editorial-card:last-child {
    margin-top: 3rem;
  }

  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    min-height: 30rem;
  }

  .page-hero-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .gallery-grid {
    column-count: 2;
  }

  .calendar-months {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    gap: 1rem;
    padding: 1rem 1rem 0;
  }

  .site-header.is-scrolled {
    min-height: 5.75rem;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    justify-content: center;
    gap: 0.85rem 1.25rem;
    padding: 0.7rem 0 1rem;
    flex-wrap: wrap;
  }

  .primary-nav a {
    flex: 0 0 auto;
    font-size: 0.64rem;
  }

  .language-select {
    min-height: 2.6rem;
  }

  .hero {
    min-height: 43rem;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: calc(100% - 2rem);
  }

  .hero-copy > .eyebrow {
    margin-top: 0;
  }

  .hero .display {
    max-width: 10ch;
  }

  .hero-bottom,
  .section-head,
  .story-grid,
  .availability-layout,
  .contact-layout,
  .booking-layout,
  .price-comparison,
  .cta-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .price-actions {
    justify-content: flex-start;
  }

  .hero-bottom {
    margin-top: 4rem;
  }

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

  .estate-status-item {
    min-height: 7.5rem;
    padding: 1rem;
  }

  .estate-status-item:nth-child(2) {
    border-right: 0;
  }

  .estate-status-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .estate-status-item:last-child {
    grid-column: 1 / -1;
  }

  .estate-statement {
    min-height: 28rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .section-head {
    gap: 1.5rem;
  }

  .editorial-card:first-child,
  .editorial-card:last-child {
    grid-column: 1 / -1;
    min-height: 0;
    margin-top: 0;
  }

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

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid currentColor;
  }

  .guest-impressions {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .reviews-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reviews-intro h2 {
    font-size: clamp(3.3rem, 17vw, 5.4rem);
  }

  .reviews-rating {
    text-align: left;
  }

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

  .review-card {
    min-height: 19rem;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .review-card p {
    max-width: 13ch;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-hero-copy {
    min-height: 33rem;
    padding: 5rem 1rem 3rem;
  }

  .page-hero-media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .amenity-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card.is-featured {
    transform: none;
  }

  .gallery-grid {
    column-count: 1;
  }

  .gallery-item,
  .gallery-item:nth-child(7n + 1),
  .gallery-item:nth-child(7n + 3),
  .gallery-item:nth-child(7n + 4),
  .gallery-item:nth-child(7n + 6) {
    grid-column: 1 / -1;
    grid-row: span 3;
  }

  .calendar-aside {
    position: static;
  }

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

  .detail-row:nth-child(odd) {
    border-right: 0;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

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

  .contact-layout {
    gap: 4.5rem;
  }

  .contact-details {
    align-self: auto;
  }

  .contact-details .display {
    max-width: 9ch;
    font-size: clamp(3.05rem, 14.5vw, 4.3rem);
    line-height: 0.98;
    letter-spacing: -0.052em;
  }

  .contact-details .lead {
    margin-top: 1.75rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .contact-details .lead + .eyebrow {
    margin-top: 3rem;
  }

  .contact-details > a:not(.button) {
    margin-top: 1rem;
    font-size: 0.95rem;
  }

  .site-footer {
    gap: 2.5rem;
  }

  .footer-meta {
    align-items: flex-start;
    min-height: auto;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
