:root {
  --ink: #161616;
  --muted: #5f5d58;
  --paper: #fbfaf6;
  --warm: #efe8da;
  --line: #ded7c8;
  --pine: #25483e;
  --sea: #2f6f6c;
  --brass: #a78343;
  --clay: #a85f48;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(22, 22, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  color: var(--white);
  background: rgba(18, 18, 18, 0.5);
  box-shadow: 0 10px 30px rgba(22, 22, 22, 0.08);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--white);
  background: rgba(38, 38, 38, 0.82);
  box-shadow: 0 12px 34px rgba(22, 22, 22, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo,
.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1;
}

.brand-logo {
  display: block;
  border: 0;
  background: transparent;
  object-fit: contain;
}

.brand-logo-full {
  width: min(142px, 34vw);
  height: auto;
  border-radius: 0;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.42));
}

.brand-text {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
}

.brand-text span:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.brand-text span:last-child {
  font-size: 0.68rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 7px auto;
  background: currentColor;
}

.hero,
.property-hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
  background: #141414;
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-video-emerald,
body[data-property="emerald-estate"] .property-hero > video {
  object-position: center top;
}

.retreat-card-emerald-estate .retreat-media .media-poster,
.retreat-card-emerald-estate .retreat-media video,
.other-retreat-emerald-estate .media-poster,
.other-retreat-emerald-estate video {
  object-position: center 12%;
}

.hero-media video {
  z-index: 0;
  opacity: 0;
  transition: opacity 2000ms ease-in-out;
  will-change: opacity;
}

.hero-media video.is-active {
  z-index: 2;
  opacity: 1;
}

.hero-media video.is-preparing {
  z-index: 1;
}

.hero-media video.is-exiting {
  z-index: 1;
  opacity: 0;
}

.hero-shade,
.property-hero-shade {
  position: absolute;
  inset: 0;
}

.hero-shade {
  background: none;
}

.property-hero-shade {
  background: none;
}

.hero-content,
.property-hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  padding: 180px 0 118px;
  margin-left: 7vw;
}

.hero-content,
.property-hero-content {
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.property-hero h1 {
  max-width: 740px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.75rem;
  font-weight: 500;
  line-height: 0.98;
}

.hero-copy,
.property-hero-content > p:last-of-type {
  max-width: 640px;
  margin: 26px 0 0;
  font-size: 1.2rem;
  line-height: 1.7;
}

.hero-actions,
.book-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.book-section .button-secondary,
.property-overview .button-secondary {
  color: var(--ink);
  border-color: var(--line);
}

.hero-footnote {
  position: absolute;
  right: 36px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-reel {
  position: absolute;
  right: 36px;
  bottom: 78px;
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-reel span {
  width: 9px;
  height: 9px;
  overflow: hidden;
  color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: transparent;
  transition: width 260ms ease, background 260ms ease;
}

.hero-reel span.is-active {
  width: 72px;
  background: rgba(255, 255, 255, 0.84);
}

.hero-footnote span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.section {
  width: min(1180px, calc(100% - 48px));
  padding: 92px 0;
  margin: 0 auto;
}

.section-heading,
.intro-grid,
.property-overview,
.book-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 54px;
  align-items: end;
}

.section h2,
.property-overview h2,
.book-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.08;
}

.section-heading p,
.intro-grid p,
.property-overview p,
.book-section p,
.experience-copy p,
.guide-panel p,
.retreat-body p,
.social-copy p,
.concierge-copy p,
.concierge-message p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.intro-section {
  padding-top: 76px;
}

.retreat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.retreat-card,
.review-card,
.guide-panel,
.social-card,
.featured-review,
.good-to-know {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.retreat-card {
  overflow: hidden;
}

.retreat-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #222;
}

.retreat-media .media-poster,
.other-retreat .media-poster,
.retreat-media video,
.other-retreat video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 400ms ease;
}

.retreat-media video,
.other-retreat video {
  opacity: 0;
  transition: opacity 220ms ease, transform 400ms ease;
}

.retreat-card.is-playing .retreat-media video,
.other-retreat.is-playing video {
  opacity: 1;
}

.retreat-card:hover video,
.other-retreat:hover video {
  transform: scale(1.05);
}

.retreat-media::after,
.other-retreat::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.08));
}

.retreat-media span,
.other-retreat span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.retreat-body {
  padding: 22px;
}

.retreat-body h3 {
  margin: 5px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.retreat-body > p:first-child {
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-stats,
.property-stats {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

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

.property-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 760px;
}

.mini-stats span,
.property-stats span {
  display: grid;
  gap: 4px;
  min-height: 74px;
  align-content: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.property-stats span {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.18);
}

.mini-stats strong,
.property-stats strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: none;
}

.property-stats strong {
  color: var(--white);
}

.text-link {
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-list {
  display: grid;
  gap: 18px;
}

.experience-list article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.experience-list img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.experience-list article > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px 20px;
  align-content: center;
  padding: 24px 24px 24px 0;
}

.experience-list span {
  grid-row: span 2;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.experience-list h3 {
  margin: 0;
  font-size: 1.08rem;
}

.experience-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.guide-grid,
.review-grid,
.social-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

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

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

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

.guide-panel,
.review-card,
.social-card {
  padding: 28px;
}

.guide-panel {
  overflow: hidden;
}

.guide-panel img {
  width: calc(100% + 56px);
  max-width: none;
  height: 250px;
  object-fit: cover;
  margin: -28px -28px 24px;
}

.guide-panel span,
.featured-review span,
.good-to-know span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-panel h3 {
  margin: 12px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.guide-moment-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.guide-moment-list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.guide-moment-list strong {
  color: var(--ink);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.concierge-card {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 42px rgba(22, 22, 22, 0.07);
}

.guide-elevate-block {
  display: grid;
  gap: 16px;
  padding-top: 26px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.guide-elevate-heading {
  display: grid;
  gap: 8px;
}

.guide-elevate-heading span,
.guide-elevate-list > li > span {
  color: var(--sea);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-elevate-heading h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.12;
}

.guide-elevate-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.guide-elevate-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.guide-elevate-list li {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.guide-elevate-list li:first-child {
  border-top: 0;
}

.guide-elevate-list h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.guide-elevate-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.guide-elevate-links,
.concierge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.guide-elevate-links a,
.concierge-actions a {
  padding: 8px 10px;
  color: var(--pine);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease;
}

.guide-elevate-links a:hover,
.concierge-actions a:hover {
  color: var(--clay);
  border-color: var(--brass);
}

.concierge-message span {
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.concierge-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.08;
}

.concierge-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding-top: 22px;
}

.concierge-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  margin-top: 0;
}

.concierge-thread {
  display: grid;
  gap: 12px;
  min-height: 250px;
  max-height: 420px;
  overflow: auto;
  padding: 4px;
}

.concierge-message {
  display: grid;
  gap: 8px;
  max-width: 86%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.concierge-message h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.22;
}

.concierge-message-user {
  justify-self: end;
  color: var(--white);
  border-color: transparent;
  background: var(--pine);
}

.concierge-message-user p {
  color: rgba(255, 255, 255, 0.86);
}

.concierge-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.concierge-prompts button {
  min-height: 36px;
  padding: 8px 12px;
  color: var(--muted);
  border: 0;
  border-radius: 4px;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.concierge-prompts button {
  border: 1px solid var(--line);
  background: var(--paper);
}

.concierge-prompts button:hover {
  color: var(--white);
  background: var(--ink);
}

.concierge-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.concierge-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.ai-companion {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  justify-items: end;
  pointer-events: none;
}

.ai-companion-launcher,
.ai-companion-panel {
  pointer-events: auto;
}

.ai-companion-launcher {
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
  padding: 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(22, 22, 22, 0.94);
  box-shadow: 0 18px 54px rgba(22, 22, 22, 0.24);
}

.ai-companion.is-open .ai-companion-launcher {
  display: none;
}

.ai-companion-launcher:focus-within {
  border-color: rgba(201, 168, 106, 0.72);
  box-shadow: 0 20px 64px rgba(22, 22, 22, 0.32);
}

.ai-companion-launcher-heading {
  display: grid;
  justify-items: start;
  gap: 2px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.ai-companion-launcher-heading span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-companion-launcher-heading strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
}

.ai-companion-launcher-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
}

.ai-companion-launcher-field input {
  min-width: 0;
  min-height: 38px;
  padding: 0 8px;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 0.88rem;
}

.ai-companion-launcher-field input::placeholder {
  color: rgba(60, 60, 56, 0.66);
}

.ai-companion-launcher-submit {
  min-width: 56px;
  padding: 0 10px;
  color: var(--white);
  border: 0;
  border-radius: 4px;
  background: var(--pine);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.ai-companion-launcher-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.sticky-booking {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 36;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(560px, calc(100vw - 48px));
  padding: 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(22, 22, 22, 0.94);
  box-shadow: 0 20px 64px rgba(22, 22, 22, 0.28);
}

.sticky-booking-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.sticky-booking-copy span {
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sticky-booking-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
}

.sticky-booking-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.45;
}

.sticky-booking-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--ink);
  border-radius: 4px;
  background: var(--brass);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ai-companion-panel {
  display: grid;
  width: min(410px, calc(100vw - 32px));
  max-height: min(690px, calc(100svh - 112px));
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.98);
  box-shadow: 0 24px 72px rgba(22, 22, 22, 0.2);
}

.ai-companion-panel[hidden] {
  display: none;
}

.ai-companion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: var(--white);
  background: var(--ink);
}

.ai-companion-header span,
.ai-companion-message span {
  color: var(--brass);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-companion-header h2 {
  margin: 4px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.ai-companion-close {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.ai-companion-thread {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 250px;
  max-height: 380px;
  overflow: auto;
  padding: 16px;
}

.ai-companion-message {
  display: grid;
  gap: 8px;
  max-width: 92%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.ai-companion-message p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.ai-companion-message-user {
  justify-self: end;
  color: var(--white);
  border-color: transparent;
  background: var(--pine);
}

.ai-companion-message-user p {
  color: rgba(255, 255, 255, 0.9);
}

.ai-companion-message.is-thinking p {
  color: var(--sea);
  font-style: italic;
}

.ai-companion-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.ai-companion-links a {
  padding: 7px 9px;
  color: var(--pine);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-companion-prompts {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px 14px;
}

.ai-companion-prompts button {
  flex: 0 0 auto;
  padding: 8px 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.ai-companion-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
  background: rgba(239, 232, 218, 0.5);
}

.ai-companion-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.ai-companion-form button {
  min-width: 72px;
  padding: 0 14px;
  color: var(--white);
  border: 0;
  border-radius: 4px;
  background: var(--pine);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.ai-companion-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.review-card p,
.featured-review p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.3;
}

.review-card div {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.82rem;
}

.review-card strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.review-rating-link {
  width: fit-content;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.review-rating-link:hover {
  color: var(--ink);
}

.social-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding-bottom: 112px;
}

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

.social-card {
  min-height: 190px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.social-card:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
}

.social-card span {
  color: var(--sea);
  font-size: 0.8rem;
  font-weight: 900;
}

.social-card strong {
  display: block;
  margin: 18px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.social-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  padding: 46px 36px;
  color: var(--white);
  background: var(--ink);
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 12px;
  min-width: 220px;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.property-hero > video {
  position: absolute;
  inset: 0;
}

.property-hero-content {
  width: min(860px, calc(100% - 48px));
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.property-brand {
  margin-bottom: 18px;
}

.property-logo {
  width: 128px;
  height: auto;
  border-radius: 8px;
  background: var(--white);
}

.property-wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.property-film video {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  margin-top: 34px;
  border-radius: 8px;
  background: #151515;
}

.amenity-grid,
.local-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.amenity-grid li,
.local-list li {
  min-height: 120px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  line-height: 1.65;
}

.local-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.property-review {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 18px;
}

.featured-review,
.good-to-know {
  padding: 30px;
}

.featured-review strong {
  display: block;
  margin-top: 22px;
}

.good-to-know ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.book-section {
  align-items: center;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm);
}

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

.other-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.other-retreat {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #222;
}

.other-retreat strong {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

@media (max-width: 980px) {
  .site-header {
    padding: 16px 24px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 30;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 96px 32px;
    color: var(--white);
    background: rgba(20, 20, 20, 0.96);
    font-size: 1.2rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-content,
  .property-hero-content {
    padding-top: 150px;
    margin-left: 24px;
  }

  .hero h1,
  .property-hero h1 {
    font-size: 3.2rem;
  }

  .section-heading,
  .intro-grid,
  .property-overview,
  .book-section,
  .experience-section,
  .social-section,
  .concierge-section,
  .property-review {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section h2,
  .property-overview h2,
  .book-section h2 {
    font-size: 2.35rem;
  }

  .retreat-grid,
  .review-grid,
  .amenity-grid,
  .local-list {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 680px) {
  .brand-text span:first-child {
    font-size: 0.88rem;
  }

  .brand-text span:last-child {
    font-size: 0.58rem;
  }

  .brand-logo,
  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-logo-full {
    width: min(126px, 42vw);
    height: auto;
  }

  .hero,
  .property-hero {
    min-height: 88svh;
  }

  .hero-content,
  .property-hero-content {
    width: calc(100% - 36px);
    padding: 132px 0 98px;
    margin-left: 18px;
  }

  .hero h1,
  .property-hero h1 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .hero-copy,
  .property-hero-content > p:last-of-type {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions,
  .book-actions,
  .concierge-form {
    align-items: stretch;
    flex-direction: column;
    display: flex;
  }

  .button {
    width: 100%;
  }

  .hero-footnote {
    right: 18px;
    bottom: 18px;
    left: 18px;
    flex-wrap: wrap;
  }

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

  .retreat-grid,
  .review-grid,
  .social-grid,
  .amenity-grid,
  .local-list,
  .other-grid {
    grid-template-columns: 1fr;
  }

  .mini-stats,
  .property-stats {
    grid-template-columns: 1fr;
  }

  .retreat-media {
    aspect-ratio: 4 / 4.6;
  }

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

  .experience-list img {
    height: 220px;
    min-height: 0;
  }

  .experience-list article > div {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .experience-list span {
    grid-row: auto;
  }

  .hero-reel {
    right: 18px;
    bottom: 76px;
  }

  .book-section {
    padding: 28px;
  }

  .concierge-card {
    padding: 16px;
  }

  .guide-moment-list li,
  .guide-elevate-list li {
    grid-template-columns: 1fr;
  }

  .concierge-message {
    max-width: 100%;
  }

  .ai-companion {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-items: stretch;
  }

  .ai-companion-launcher {
    justify-self: stretch;
    width: 100%;
  }

  .ai-companion-panel {
    width: 100%;
    max-height: calc(100svh - 92px);
  }

  .ai-companion-thread {
    max-height: 330px;
  }

  .sticky-booking {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    width: auto;
    gap: 10px;
    padding: 12px;
  }

  .sticky-booking-copy p {
    display: none;
  }

  .sticky-booking-button {
    width: 100%;
  }

  body.has-sticky-booking .ai-companion {
    bottom: 130px;
  }

  .site-footer {
    flex-direction: column;
    padding: 42px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  video {
    animation: none;
  }
}
