@font-face {
  font-family: "Cinzel";
  src: url("/fonts/cinzel-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

body.home-2026 {
  --home-ink: #111514;
  --home-ink-soft: #191d1c;
  --home-paper: #f4f0e8;
  --home-paper-deep: #e7d9c4;
  --home-gold: #b89a5a;
  --home-gold-bright: #d9bd80;
  --home-text: #252825;
  --home-muted: #696b65;
  --home-line: rgba(23, 28, 27, 0.16);
  --home-line-light: rgba(244, 240, 232, 0.16);
  --home-display: "Cinzel", Georgia, serif;
  --home-sans: "Montserrat", Arial, sans-serif;
  --home-wrap: min(1280px, calc(100% - 96px));
  min-width: 320px;
  margin: 0;
  background: var(--home-ink);
  color: var(--home-text);
  font-family: var(--home-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.home-2026 *,
body.home-2026 *::before,
body.home-2026 *::after {
  box-sizing: border-box;
}

body.home-2026 img {
  display: block;
  width: 100%;
  max-width: 100%;
}

body.home-2026 a {
  color: inherit;
  text-decoration: none;
}

body.home-2026 button,
body.home-2026 input {
  font: inherit;
}

body.home-2026 p {
  line-height: 1.8;
}

body.home-2026 [hidden] {
  display: none !important;
}

body.home-2026 a:focus-visible,
body.home-2026 button:focus-visible,
body.home-2026 input:focus-visible,
body.home-2026 summary:focus-visible {
  outline: 2px solid var(--home-gold-bright);
  outline-offset: 4px;
}

.home-2026 .home-wrap {
  width: var(--home-wrap);
  margin-inline: auto;
}

.home-2026 .skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--home-gold-bright);
  color: var(--home-ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

/* Header */
.home-2026 .site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 8, 8, 0.88);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.home-2026 .site-header.is-scrolled {
  background: rgba(4, 7, 7, 0.97);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
}

.home-2026 .header-inner {
  display: flex;
  width: min(1440px, calc(100% - 48px));
  min-height: 86px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.home-2026 .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--home-paper);
}

.home-2026 .brand-mark {
  display: grid;
  width: 36px;
  height: 42px;
  padding: 6px 4px;
  place-items: center;
  border: 1px solid rgba(184, 154, 90, 0.72);
}

.home-2026 .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-2026 .brand strong,
.home-2026 .brand small {
  display: block;
}

.home-2026 .brand strong {
  font-family: "Cinzel", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.home-2026 .brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.home-2026 .site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.home-2026 .site-nav > a {
  position: relative;
  padding-block: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.home-2026 .site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--home-gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.home-2026 .site-nav > a:hover,
.home-2026 .site-nav > a:focus-visible,
.home-2026 .site-nav > a[aria-current="page"] {
  color: var(--home-paper);
}

.home-2026 .site-nav > a:hover::after,
.home-2026 .site-nav > a:focus-visible::after,
.home-2026 .site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.home-2026 .site-nav .nav-cta {
  min-height: auto;
  padding: 13px 17px;
  border: 1px solid var(--home-gold);
  color: var(--home-gold-bright);
}

.home-2026 .site-nav .nav-cta::after {
  display: none;
}

.home-2026 .site-nav .nav-cta:hover,
.home-2026 .site-nav .nav-cta:focus-visible {
  background: var(--home-gold);
  color: var(--home-ink);
}

.home-2026 .site-nav .guest-guide-nav {
  color: var(--home-gold-bright);
}

.home-2026 .site-nav .guest-guide-nav::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 8px;
  background: currentColor;
  content: "";
  transform: rotate(45deg) translateY(-1px);
}

.home-2026 .site-nav .guest-guide-nav:hover,
.home-2026 .site-nav .guest-guide-nav:focus-visible {
  color: var(--home-paper);
}

.home-2026 .menu-button {
  display: none;
}

/* Hero */
.home-2026 .home-hero {
  display: grid;
  height: calc(100svh - 72px);
  min-height: 650px;
  max-height: 980px;
  grid-template-columns: minmax(450px, 42%) minmax(0, 58%);
  background: var(--home-ink);
  color: var(--home-paper);
}

.home-2026 .home-hero__copy {
  display: flex;
  min-width: 0;
  padding: clamp(48px, 5vw, 76px) clamp(38px, 4.3vw, 68px);
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(184, 154, 90, 0.42);
  background:
    radial-gradient(circle at 8% 12%, rgba(184, 154, 90, 0.08), transparent 32%),
    var(--home-ink);
}

.home-2026 .home-eyebrow {
  margin: 0 0 24px;
  color: var(--home-gold-bright);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-2026 .home-hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--home-paper);
  font-family: var(--home-display);
  font-size: clamp(52px, 4.65vw, 70px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.99;
  text-wrap: balance;
}

.home-2026 .home-hero__lede {
  max-width: 500px;
  margin: 27px 0 0;
  color: rgba(244, 240, 232, 0.74);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.72;
}

.home-2026 .home-actions {
  display: flex;
  margin-top: 35px;
  flex-wrap: wrap;
  gap: 14px;
}

.home-2026 .home-button {
  display: inline-flex;
  min-height: 54px;
  padding: 16px 23px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.home-2026 .home-button span[aria-hidden="true"] {
  font-size: 18px;
  line-height: 0;
  transition: transform 180ms ease;
}

.home-2026 .home-button:hover span[aria-hidden="true"] {
  transform: translateX(4px);
}

.home-2026 .home-button--gold {
  border-color: var(--home-gold);
  background: var(--home-gold);
  color: var(--home-ink);
}

.home-2026 .home-button--gold:hover {
  border-color: var(--home-gold-bright);
  background: var(--home-gold-bright);
}

.home-2026 .home-button--line {
  border-color: rgba(184, 154, 90, 0.9);
  color: var(--home-paper);
}

.home-2026 .home-button--line:hover {
  background: rgba(231, 217, 196, 0.08);
}

.home-2026 .home-button--dark {
  border-color: var(--home-ink);
  background: var(--home-ink);
  color: var(--home-paper);
}

.home-2026 .home-button--dark:hover {
  border-color: #2f3432;
  background: #2f3432;
}

.home-2026 .home-button--paper-line {
  border-color: rgba(17, 21, 20, 0.38);
  color: var(--home-ink);
}

.home-2026 .home-button--paper-line:hover {
  border-color: var(--home-ink);
  background: rgba(17, 21, 20, 0.04);
}

.home-2026 .home-hero__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.home-2026 .home-hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 21, 20, 0.16), transparent 22%),
    linear-gradient(180deg, transparent 65%, rgba(8, 12, 11, 0.3));
  content: "";
  pointer-events: none;
}

.home-2026 .home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: brightness(0.9) contrast(1.04) saturate(0.92);
  animation: home-image-settle 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-2026 .home-hero__caption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 23px;
  margin: 0;
  color: rgba(244, 240, 232, 0.72);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-2026 .home-hero__copy > * {
  animation: home-copy-in 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-2026 .home-hero__copy > :nth-child(2) {
  animation-delay: 60ms;
}

.home-2026 .home-hero__copy > :nth-child(3) {
  animation-delay: 110ms;
}

.home-2026 .home-hero__copy > :nth-child(4) {
  animation-delay: 160ms;
}

@keyframes home-copy-in {
  from {
    opacity: 1;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-image-settle {
  from {
    opacity: 1;
    transform: scale(1.015);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.home-2026 .home-fact-rail {
  display: grid;
  min-height: 72px;
  padding-inline: 32px;
  border-top: 1px solid rgba(184, 154, 90, 0.48);
  border-bottom: 1px solid rgba(244, 240, 232, 0.1);
  background: #0d1110;
  color: rgba(244, 240, 232, 0.72);
  grid-template-columns: repeat(3, 1fr);
}

.home-2026 .home-fact-rail a,
.home-2026 .home-fact-rail span {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.home-2026 .home-fact-rail > * + *::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--home-gold);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.home-2026 .home-fact-rail a {
  transition: color 180ms ease;
}

.home-2026 .home-fact-rail a:hover {
  color: var(--home-paper);
}

/* Shared section typography */
.home-2026 .home-section {
  padding: clamp(88px, 9vw, 144px) 0;
}

.home-2026 .home-section--paper {
  background: var(--home-paper);
}

.home-2026 .home-section--sand {
  background: var(--home-paper-deep);
}

.home-2026 .home-section--dark {
  background:
    radial-gradient(circle at 82% 10%, rgba(184, 154, 90, 0.08), transparent 28%),
    var(--home-ink-soft);
  color: var(--home-paper);
}

.home-2026 .home-heading {
  max-width: 790px;
  margin-bottom: 54px;
}

.home-2026 .home-heading h2,
.home-2026 .home-editorial-copy h2,
.home-2026 .location-copy h2,
.home-2026 .availability-copy h2,
.home-2026 .review-copy h2 {
  margin: 0;
  font-family: var(--home-display);
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-wrap: balance;
}

.home-2026 .home-heading > p:last-child {
  max-width: 660px;
  margin: 25px 0 0;
  color: var(--home-muted);
  font-size: 15px;
}

.home-2026 .home-heading--light > p:last-child {
  color: rgba(244, 240, 232, 0.64);
}

/* Estate overview */
.home-2026 .home-editorial {
  display: grid;
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.home-2026 .home-editorial-copy > p:not(.home-eyebrow) {
  max-width: 570px;
  margin: 27px 0 0;
  color: #555950;
  font-size: 15px;
}

.home-2026 .home-stat-list {
  display: grid;
  margin: 38px 0 36px;
  border-top: 1px solid var(--home-line);
  grid-template-columns: repeat(3, 1fr);
}

.home-2026 .home-stat-list > div {
  padding: 24px 20px 0 0;
}

.home-2026 .home-stat-list > div + div {
  padding-left: 22px;
  border-left: 1px solid var(--home-line);
}

.home-2026 .home-stat-list strong,
.home-2026 .home-stat-list span {
  display: block;
}

.home-2026 .home-stat-list strong {
  color: #765c27;
  font-family: var(--home-display);
  font-size: 30px;
  font-weight: 500;
}

.home-2026 .home-stat-list span {
  margin-top: 8px;
  color: #666a62;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-2026 .home-editorial-media {
  position: relative;
  margin: 0;
}

.home-2026 .home-editorial-media::before {
  position: absolute;
  z-index: 1;
  top: -18px;
  right: -18px;
  width: 90px;
  height: 90px;
  border-top: 1px solid var(--home-gold);
  border-right: 1px solid var(--home-gold);
  content: "";
}

.home-2026 .home-editorial-media img {
  height: clamp(540px, 52vw, 700px);
  object-fit: cover;
}

.home-2026 .home-editorial-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 320px;
  padding: 17px 22px;
  background: rgba(17, 21, 20, 0.9);
  color: rgba(244, 240, 232, 0.78);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-transform: uppercase;
}

/* Residences */
.home-2026 .residence-home-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
}

.home-2026 .residence-home-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #0b0f0e;
  color: var(--home-paper);
}

.home-2026 .residence-home-card::after {
  position: absolute;
  inset: 32% 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 7, 0.92));
  content: "";
}

.home-2026 .residence-home-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-2026 .residence-home-card:hover img {
  transform: scale(1.035);
}

.home-2026 .residence-home-card__copy {
  position: absolute;
  z-index: 1;
  right: 25px;
  bottom: 28px;
  left: 25px;
}

.home-2026 .residence-home-card__meta {
  margin: 0 0 9px;
  color: var(--home-gold-bright);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-2026 .residence-home-card h3 {
  margin: 0;
  font-family: var(--home-display);
  font-size: clamp(27px, 2.15vw, 34px);
  font-weight: 500;
  line-height: 1.05;
}

.home-2026 .residence-home-card__note {
  display: flex;
  margin-top: 12px;
  align-items: center;
  justify-content: space-between;
  color: rgba(244, 240, 232, 0.68);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-2026 .residence-home-card__note b {
  color: var(--home-paper);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.home-2026 .residence-home-card:hover .residence-home-card__note b {
  transform: translateX(4px);
}

.home-2026 .section-action {
  margin-top: 38px;
}

/* Gallery */
.home-2026 .home-gallery-grid {
  display: grid;
  grid-auto-rows: 250px;
  gap: 12px;
  grid-template-columns: repeat(12, 1fr);
}

.home-2026 .home-gallery-grid .gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #d7cebf;
  cursor: zoom-in;
}

.home-2026 .home-gallery-grid .gallery-item:first-child {
  grid-column: span 7;
  grid-row: span 2;
}

.home-2026 .home-gallery-grid .gallery-item:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}

.home-2026 .home-gallery-grid .gallery-item:nth-child(n + 3) {
  grid-column: span 4;
  grid-row: auto;
}

.home-2026 .home-gallery-grid .gallery-item img {
  height: 100%;
  object-fit: cover;
  transition:
    opacity 360ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-2026 .home-gallery-grid .gallery-item:hover img {
  opacity: 0.9;
  transform: scale(1.025);
}

.home-2026 .home-gallery-grid .gallery-item > span {
  position: absolute;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.86);
  text-transform: uppercase;
}

.home-2026 .home-gallery-grid .gallery-item > span b {
  font-size: 18px;
  font-weight: 400;
}

/* Location */
.home-2026 .home-location {
  display: grid;
  background: #0d1110;
  color: var(--home-paper);
  grid-template-columns: 1.12fr 0.88fr;
}

.home-2026 .home-location__media {
  min-height: 720px;
}

.home-2026 .home-location__media img {
  height: 100%;
  object-fit: cover;
}

.home-2026 .location-copy {
  display: flex;
  padding: clamp(70px, 8vw, 120px);
  flex-direction: column;
  justify-content: center;
}

.home-2026 .location-copy > p:not(.home-eyebrow) {
  max-width: 540px;
  margin: 27px 0 0;
  color: rgba(244, 240, 232, 0.66);
  font-size: 14px;
}

.home-2026 .location-copy dl {
  margin: 38px 0;
  border-top: 1px solid var(--home-line-light);
}

.home-2026 .location-copy dl > div {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--home-line-light);
  grid-template-columns: 1fr auto;
  gap: 28px;
}

.home-2026 .location-copy dt,
.home-2026 .location-copy dd {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.6;
  text-transform: uppercase;
}

.home-2026 .location-copy dt {
  color: rgba(244, 240, 232, 0.56);
}

.home-2026 .location-copy dd {
  color: var(--home-gold-bright);
  text-align: right;
}

.home-2026 .home-location .home-actions {
  margin-top: 0;
  gap: 10px;
}

/* Services */
.home-2026 .home-service-grid {
  display: grid;
  border-top: 1px solid var(--home-line);
  grid-template-columns: repeat(3, 1fr);
}

.home-2026 .home-service-grid article {
  min-height: 300px;
  padding: 38px 34px 34px 0;
}

.home-2026 .home-service-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--home-line);
}

.home-2026 .home-service-grid article > span {
  display: block;
  margin-bottom: 38px;
  color: #8a6b2f;
  font-family: var(--home-display);
  font-size: 23px;
}

.home-2026 .home-service-grid h3 {
  margin: 0;
  font-family: var(--home-display);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.08;
}

.home-2026 .home-service-grid p {
  margin: 18px 0 0;
  color: #62665e;
  font-size: 13px;
}

.home-2026 .service-terms {
  max-width: 840px;
  margin: 30px 0 0;
  color: #777a72;
  font-size: 10px;
  line-height: 1.75;
}

/* Review */
.home-2026 .home-review {
  display: grid;
  align-items: center;
  gap: clamp(54px, 8vw, 118px);
  grid-template-columns: 0.72fr 1.28fr;
}

.home-2026 .review-score {
  padding-right: clamp(36px, 6vw, 90px);
  border-right: 1px solid var(--home-line);
  text-align: center;
}

.home-2026 .review-score strong,
.home-2026 .review-score span,
.home-2026 .review-score small {
  display: block;
}

.home-2026 .review-score strong {
  color: #7e6129;
  font-family: var(--home-display);
  font-size: clamp(88px, 11vw, 150px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.home-2026 .review-score span {
  margin-top: 28px;
  color: #9b742d;
  font-size: 17px;
  letter-spacing: 0.16em;
}

.home-2026 .review-score small {
  margin-top: 13px;
  color: #777a72;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.home-2026 .review-copy > p:not(.home-eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: #5e625a;
  font-size: 14px;
}

.home-2026 .review-source {
  font-size: 10px !important;
}

/* Availability */
.home-2026 .home-availability {
  position: relative;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(7, 11, 10, 0.95), rgba(7, 11, 10, 0.79)),
    url("/images/outdoor-kitchen.webp") center / cover no-repeat;
  color: var(--home-paper);
}

.home-2026 .availability-layout {
  display: grid;
  align-items: start;
  gap: clamp(46px, 5.5vw, 78px);
  grid-template-columns: minmax(330px, 0.62fr) minmax(720px, 1.38fr);
}

.home-2026 .availability-copy > p:not(.home-eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(244, 240, 232, 0.68);
  font-size: 14px;
}

.home-2026 .season-list {
  display: grid;
  margin: 36px 0 0;
  border-top: 1px solid var(--home-line-light);
}

.home-2026 .season-list > div {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--home-line-light);
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
}

.home-2026 .season-list strong {
  color: var(--home-gold-bright);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.65;
  text-transform: uppercase;
}

.home-2026 .season-list span {
  color: rgba(244, 240, 232, 0.68);
  font-size: 11px;
  line-height: 1.65;
}

.home-2026 .booking-panel {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding: clamp(28px, 3.4vw, 48px);
  border: 1px solid rgba(184, 154, 90, 0.5);
  background: rgba(244, 240, 232, 0.97);
  color: var(--home-text);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.home-2026 .booking-panel h3 {
  margin: 0;
  font-family: var(--home-display);
  font-size: 35px;
  font-weight: 500;
  line-height: 1.08;
}

.home-2026 .booking-panel > p {
  margin: 12px 0 22px;
  color: #676a63;
  font-size: 12px;
}

.home-2026 .lodgify-booking-box {
  position: relative;
  min-height: 152px;
}

.home-2026 .lodgify-booking-loading {
  display: grid;
  min-height: 132px;
  place-items: center;
  border: 1px solid var(--home-line);
  color: #6e716a;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-2026 #lodgify-search-bar {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 132px;
}

.home-2026 .widget-fallback {
  padding: 22px;
  border: 1px solid var(--home-line);
  background: white;
}

.home-2026 .widget-fallback p {
  margin: 0 0 18px;
  color: #5f635c;
  font-size: 12px;
}

.home-2026 .stay-highlights {
  display: grid;
  margin-top: 20px;
  border-top: 1px solid var(--home-line);
  grid-template-columns: repeat(3, 1fr);
}

.home-2026 .stay-highlights > div {
  padding: 18px 12px 0 0;
}

.home-2026 .stay-highlights > div + div {
  padding-left: 13px;
  border-left: 1px solid var(--home-line);
}

.home-2026 .stay-highlights strong,
.home-2026 .stay-highlights span {
  display: block;
}

.home-2026 .stay-highlights strong {
  color: #7d6028;
  font-family: var(--home-display);
  font-size: 20px;
  font-weight: 500;
}

.home-2026 .stay-highlights span {
  margin-top: 5px;
  color: #73766f;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-2026 .availability-note {
  margin: 18px 0 0 !important;
  color: #7b7e77 !important;
  font-size: 9px !important;
  line-height: 1.6 !important;
}

.home-2026 .booking-contact-link {
  display: inline-flex;
  margin-top: 25px;
  border-bottom: 1px solid rgba(184, 154, 90, 0.65);
  color: var(--home-gold-bright);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 2;
  text-transform: uppercase;
}

/* Footer */
.home-2026 .site-footer {
  background: #080b0a;
  color: var(--home-paper);
}

.home-2026 .footer-main {
  display: grid;
  padding: 74px 0 62px;
  gap: 48px;
  grid-template-columns: 1.4fr 0.78fr 0.92fr;
}

.home-2026 .footer-brand h2 {
  max-width: 600px;
  margin: 0;
  font-family: var(--home-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}

.home-2026 .footer-brand > a {
  display: inline-flex;
  margin-top: 26px;
  border-bottom: 1px solid rgba(184, 154, 90, 0.7);
  color: var(--home-gold-bright);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 2;
  text-transform: uppercase;
}

.home-2026 .site-footer h3 {
  margin: 0 0 20px;
  color: var(--home-gold-bright);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-2026 .footer-links {
  display: grid;
  gap: 12px;
}

.home-2026 .footer-links a {
  width: fit-content;
  color: rgba(244, 240, 232, 0.62);
  font-size: 12px;
  line-height: 1.6;
  transition: color 180ms ease;
}

.home-2026 .footer-links a:hover {
  color: var(--home-paper);
}

.home-2026 .footer-guest-guide,
.home-2026 .footer-corporate-link {
  display: grid;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(244, 240, 232, 0.11);
  grid-template-columns: minmax(0, 1fr) auto;
}

.home-2026 .footer-guest-guide {
  padding: 30px 0;
  border-top-color: rgba(184, 154, 90, 0.36);
}

.home-2026 .footer-guest-guide__label {
  margin: 0 0 7px;
  color: var(--home-gold-bright);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.home-2026 .footer-guest-guide h3 {
  margin: 0;
  color: var(--home-paper);
  font-family: var(--home-display);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.home-2026 .footer-guest-guide__description {
  max-width: 760px;
  margin: 9px 0 0;
  color: rgba(244, 240, 232, 0.56);
  font-size: 11px;
}

.home-2026 .footer-guest-guide__action {
  min-width: 190px;
  padding: 14px 18px;
  border: 1px solid var(--home-gold);
  color: var(--home-gold-bright);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.home-2026 .footer-guest-guide__action:hover {
  background: var(--home-gold);
  color: var(--home-ink);
}

.home-2026 .footer-corporate-link {
  padding: 25px 0;
  color: rgba(244, 240, 232, 0.56);
}

.home-2026 .footer-corporate-link p {
  max-width: 800px;
  margin: 0;
  font-size: 11px;
}

.home-2026 .footer-corporate-link a {
  color: var(--home-gold-bright);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-2026 .footer-legal {
  display: flex;
  padding: 25px 0 31px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(244, 240, 232, 0.11);
  color: rgba(244, 240, 232, 0.45);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-2026 .footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.home-2026 .mobile-booking-bar {
  display: none;
}

/* Lightbox refinements for the homepage gallery. */
.home-2026 .lightbox {
  z-index: 400;
}

/* Lodgify guest selector fixes retained from the working booking page. */
body.almissum-lodgify-guests-open {
  overflow: hidden;
}

.home-2026 #lodgify-search-bar .almissum-lodgify-guest-trigger,
.home-2026 #lodgify-search-bar [data-testid="guests-breakdown-trigger"],
.home-2026 #lodgify-search-bar [data-testid="search-bar.guests-breakdown-trigger"] {
  overflow: hidden !important;
  border: 1px solid rgba(13, 15, 15, 0.22) !important;
  border-radius: 0.42em !important;
  background: #fff !important;
  box-shadow: 0 1px 2px rgba(13, 15, 15, 0.04) !important;
}

.home-2026 #lodgify-search-bar .almissum-lodgify-guest-trigger:focus-within,
.home-2026 #lodgify-search-bar [data-testid="guests-breakdown-trigger"]:focus-within,
.home-2026 #lodgify-search-bar [data-testid="search-bar.guests-breakdown-trigger"]:focus-within {
  border-color: #8a6b2f !important;
  outline: 2px solid rgba(138, 107, 47, 0.2) !important;
  outline-offset: 2px !important;
}

@media (max-width: 1240px) {
  body.home-2026 {
    --home-wrap: min(100% - 56px, 980px);
  }

  .home-2026 .header-inner {
    width: calc(100% - 36px);
    min-height: 76px;
  }

  .home-2026 .menu-button {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 46px;
    padding: 0;
    align-content: center;
    justify-items: end;
    gap: 5px;
    border: 0;
    background: transparent;
    color: var(--home-paper);
    cursor: pointer;
  }

  .home-2026 .menu-button span {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
  }

  .home-2026 .menu-button b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .home-2026 .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    max-height: calc(100vh - 76px);
    padding: 22px 28px 32px;
    overflow-x: hidden;
    overflow-y: auto;
    border-top: 1px solid rgba(244, 240, 232, 0.1);
    background: rgba(8, 11, 10, 0.99);
    align-items: stretch;
  }

  .home-2026 .site-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .home-2026 .site-nav > a {
    min-width: 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(244, 240, 232, 0.09);
    font-size: 11px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .home-2026 .site-nav > a::after {
    display: none;
  }

  .home-2026 .site-nav .nav-cta {
    margin-top: 18px;
    padding: 15px;
    text-align: center;
  }

  .home-2026 .site-nav .guest-guide-nav {
    margin-top: 7px;
    border-top: 1px solid rgba(184, 154, 90, 0.35);
  }

  .home-2026 .home-hero {
    height: calc(100svh - 72px);
    min-height: 650px;
    grid-template-columns: 45% 55%;
  }

  .home-2026 .home-hero__copy {
    padding: 48px 36px;
  }

  .home-2026 .home-hero h1 {
    font-size: clamp(50px, 6vw, 66px);
  }

  .home-2026 .residence-home-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-2026 .residence-home-card {
    min-height: 520px;
  }

  .home-2026 .availability-layout {
    grid-template-columns: 1fr;
  }

  .home-2026 .booking-panel {
    width: min(760px, 100%);
  }
}

@media (max-width: 900px) {
  body.home-2026 {
    --home-wrap: min(100% - 40px, 720px);
  }

  .home-2026 .home-hero {
    height: auto;
    max-height: none;
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy";
  }

  .home-2026 .home-hero__media {
    height: min(62vw, 520px);
    min-height: 390px;
    grid-area: media;
  }

  .home-2026 .home-hero__media img {
    object-position: 50% 50%;
  }

  .home-2026 .home-hero__copy {
    min-height: 560px;
    padding: 62px var(--home-wrap-inline, 34px);
    grid-area: copy;
    border-top: 1px solid rgba(184, 154, 90, 0.42);
    border-right: 0;
  }

  .home-2026 .home-hero h1 {
    font-size: clamp(52px, 9vw, 70px);
  }

  .home-2026 .home-fact-rail {
    padding-inline: 18px;
  }

  .home-2026 .home-editorial,
  .home-2026 .home-review {
    grid-template-columns: 1fr;
  }

  .home-2026 .home-editorial-media {
    margin-top: 18px;
  }

  .home-2026 .review-score {
    padding: 0 0 52px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .home-2026 .home-location {
    grid-template-columns: 1fr;
  }

  .home-2026 .home-location__media {
    min-height: 520px;
  }

  .home-2026 .location-copy {
    padding: 80px max(28px, calc((100vw - min(100% - 40px, 720px)) / 2));
  }

  .home-2026 .home-service-grid {
    grid-template-columns: 1fr;
  }

  .home-2026 .home-service-grid article,
  .home-2026 .home-service-grid article + article {
    min-height: 0;
    padding: 32px 0;
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .home-2026 .home-service-grid article:first-child {
    border-top: 0;
  }

  .home-2026 .home-service-grid article > span {
    margin-bottom: 18px;
  }

  .home-2026 .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .home-2026 .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  body.home-2026 {
    --home-wrap: calc(100% - 28px);
    padding-bottom: 66px;
  }

  .home-2026 .header-inner {
    min-height: 76px;
  }

  .home-2026 .brand {
    min-width: 0;
    gap: 12px;
  }

  .home-2026 .brand-mark {
    width: 31px;
    height: 36px;
  }

  .home-2026 .brand strong {
    font-size: 15px;
  }

  .home-2026 .brand small {
    font-size: 7px;
    letter-spacing: 0.12em;
  }

  .home-2026 .site-nav {
    top: 76px;
    max-height: calc(100vh - 76px);
  }

  .home-2026 .home-hero {
    position: relative;
    min-height: calc(100svh - 76px);
    grid-template-areas: "hero";
  }

  .home-2026 .home-hero__media {
    height: auto;
    min-height: calc(100svh - 74px);
    max-height: none;
    grid-area: hero;
  }

  .home-2026 .home-hero__media img {
    object-position: 54% 50%;
    filter: brightness(0.62) contrast(1.05) saturate(0.88);
  }

  .home-2026 .home-hero__media::after {
    background:
      linear-gradient(180deg, rgba(7, 10, 9, 0.18) 0%, rgba(7, 10, 9, 0.42) 35%, rgba(7, 10, 9, 0.93) 100%),
      linear-gradient(90deg, rgba(7, 10, 9, 0.35), transparent 74%);
  }

  .home-2026 .home-hero__caption {
    display: none;
  }

  .home-2026 .home-hero__copy {
    z-index: 2;
    min-height: calc(100svh - 74px);
    padding: 42px 20px 82px;
    justify-content: flex-end;
    grid-area: hero;
    border-top: 0;
    background: transparent;
  }

  .home-2026 .home-eyebrow {
    margin-bottom: 15px;
    font-size: 9px;
  }

  .home-2026 .home-hero h1 {
    font-size: clamp(43px, 12.3vw, 49px);
    line-height: 0.97;
  }

  .home-2026 .home-hero__lede {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.62;
  }

  .home-2026 .home-actions {
    display: grid;
    margin-top: 23px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-2026 .home-actions .home-button {
    min-height: 49px;
    padding-block: 13px;
  }

  .home-2026 .home-button {
    width: 100%;
  }

  .home-2026 .home-fact-rail {
    padding: 0;
    grid-template-columns: 1fr;
  }

  .home-2026 .home-fact-rail a,
  .home-2026 .home-fact-rail span {
    min-height: 50px;
    padding-inline: 15px;
    border-bottom: 1px solid rgba(244, 240, 232, 0.08);
    font-size: 8px;
  }

  .home-2026 .home-fact-rail > * + *::before {
    display: none;
  }

  .home-2026 .home-section {
    padding: 78px 0;
  }

  .home-2026 .home-heading {
    margin-bottom: 36px;
  }

  .home-2026 .home-heading h2,
  .home-2026 .home-editorial-copy h2,
  .home-2026 .location-copy h2,
  .home-2026 .availability-copy h2,
  .home-2026 .review-copy h2 {
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1.03;
  }

  .home-2026 .home-stat-list {
    grid-template-columns: 1fr;
  }

  .home-2026 .home-stat-list > div,
  .home-2026 .home-stat-list > div + div {
    padding: 18px 0;
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .home-2026 .home-editorial-media::before {
    display: none;
  }

  .home-2026 .home-editorial-media img {
    height: 112vw;
    max-height: 600px;
  }

  .home-2026 .home-editorial-media figcaption {
    max-width: 86%;
    padding: 14px 16px;
    font-size: 8px;
  }

  .home-2026 .residence-home-grid {
    display: flex;
    margin-right: -14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-2026 .residence-home-grid::-webkit-scrollbar {
    display: none;
  }

  .home-2026 .residence-home-card {
    min-width: 84vw;
    min-height: 500px;
    scroll-snap-align: start;
  }

  .home-2026 .home-gallery-grid {
    display: flex;
    margin-right: -14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-2026 .home-gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .home-2026 .home-gallery-grid .gallery-item,
  .home-2026 .home-gallery-grid .gallery-item:nth-child(n) {
    width: auto;
    height: 470px;
    flex: 0 0 84vw;
    scroll-snap-align: start;
  }

  .home-2026 .home-location__media {
    min-height: 410px;
  }

  .home-2026 .location-copy {
    padding: 72px 20px;
  }

  .home-2026 .location-copy dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-2026 .location-copy dd {
    text-align: left;
  }

  .home-2026 .review-score strong {
    font-size: 112px;
  }

  .home-2026 .availability-layout {
    gap: 42px;
  }

  .home-2026 .season-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .home-2026 .booking-panel {
    padding: 26px 14px;
  }

  .home-2026 .booking-panel h3 {
    font-size: 31px;
  }

  .home-2026 .stay-highlights {
    grid-template-columns: 1fr;
  }

  .home-2026 .stay-highlights > div,
  .home-2026 .stay-highlights > div + div {
    padding: 14px 0;
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .home-2026 .footer-main {
    padding: 62px 0 52px;
    grid-template-columns: 1fr;
  }

  .home-2026 .footer-brand {
    grid-column: auto;
  }

  .home-2026 .footer-guest-guide,
  .home-2026 .footer-corporate-link {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-2026 .footer-guest-guide__action {
    width: 100%;
  }

  .home-2026 .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-2026 .mobile-booking-bar {
    position: fixed !important;
    z-index: 95;
    right: 0;
    bottom: 0 !important;
    left: 0;
    display: flex;
    width: 100%;
    max-width: 100vw;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    background: var(--home-gold);
    color: var(--home-ink);
    box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.32);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  body.almissum-lodgify-guests-open > [data-radix-popper-content-wrapper],
  body > .almissum-lodgify-guest-popper {
    position: fixed !important;
    z-index: 520 !important;
    inset: 0 !important;
    display: flex !important;
    width: 100vw !important;
    height: 100dvh !important;
    padding: 12px !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: none !important;
    transform: none !important;
  }

  body.almissum-lodgify-guests-open
    > [data-radix-popper-content-wrapper]
    > div,
  body > .almissum-lodgify-guest-popper > div {
    width: min(420px, calc(100vw - 24px)) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 24px) !important;
    max-height: calc(100dvh - 24px) !important;
    margin: 0 !important;
    overflow: hidden auto !important;
    overscroll-behavior: contain;
    pointer-events: auto !important;
    transform: none !important;
  }

  .almissum-lodgify-guest-row {
    display: grid !important;
    width: 100% !important;
    min-width: 0 !important;
    align-items: center !important;
    grid-template-columns: minmax(0, 1fr) 98px !important;
    column-gap: 8px !important;
  }

  .almissum-lodgify-guest-label {
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .almissum-lodgify-guest-counter {
    display: flex !important;
    width: 98px !important;
    min-width: 98px !important;
    max-width: 98px !important;
    flex: 0 0 98px !important;
    justify-self: end !important;
  }

  .almissum-lodgify-guest-counter [data-testid$="-add-button"],
  .almissum-lodgify-guest-counter [data-testid$="-remove-button"] {
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    flex: 0 0 32px !important;
  }
}

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