*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --white: #ffffff;
  --off-white: #f8f6f3;
  --gold: #b8965a;
  --gold-lt: #d4b483;
  --gold-text: #7a5d28; /* darkened gold for AA contrast (5.3:1) on white */
  --dark: #1a1a1a;
  --mid: #6b6760;
  --border: #e4dfd8;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ACCESSIBILITY */
.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-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--dark);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-nav:focus {
  top: 1rem;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* LANGUAGE DROPDOWN */
.lang-dropdown {
  position: relative;
  margin-left: 1.25rem;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--mid);
  cursor: pointer;
  padding: 0.25rem 0.55rem;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.lang-btn:hover {
  color: var(--dark);
  border-color: var(--gold);
}
.lang-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.lang-dropdown.open .lang-chevron {
  transform: rotate(180deg);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  list-style: none;
  min-width: 130px;
  display: none;
  z-index: 400;
}
.lang-dropdown.open .lang-menu {
  display: block;
}
.lang-opt {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  color: var(--mid);
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.03em;
}
.lang-opt:hover,
.lang-opt:focus {
  background: var(--off-white);
  color: var(--dark);
  outline: none;
}
.lang-opt[aria-selected="true"] {
  color: var(--gold-text);
  font-weight: 500;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-brand-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.nav-brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--dark);
}
.nav-book {
  padding: 0.55rem 1.4rem;
  background: var(--dark);
  color: var(--white) !important;
  transition: background 0.2s !important;
}
.nav-book:hover {
  background: var(--gold) !important;
}
.nav-cta-btn {
  padding: 0.55rem 1.5rem;
  background: var(--gold);
  color: var(--white) !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 2px 10px rgba(184,150,90,0.35);
}
.nav-cta-btn:hover {
  background: var(--gold-text) !important;
  box-shadow: 0 4px 16px rgba(184,150,90,0.45);
}

/* HERO */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide:nth-child(1) {
  background-image: url("/images/img_balcony.webp");
}
.hero-slide:nth-child(2) {
  background-image: url("/images/img_view_sunset1.webp");
}
.hero-slide:nth-child(3) {
  background-image: url("/images/img_living2.webp");
}
.hero-slide:nth-child(4) {
  background-image: url("/images/img_pool_day.webp");
}
.hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 20, 20, 0.78) 0%,
    rgba(20, 20, 20, 0.25) 55%,
    rgba(20, 20, 20, 0.05) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 5rem;
  animation: fadeUp 1.1s ease 0.15s both;
}
.hero-pill {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(212, 180, 131, 0.55);
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.1rem;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.hero-title em {
  font-style: italic;
}
.hero-addr {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2.2rem;
}
.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.btn-w {
  padding: 0.8rem 2rem;
  background: var(--white);
  color: var(--dark);
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-w:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-ghost {
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.85);
}
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 3;
  display: flex;
  gap: 6px;
}
.hdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.hdot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 1.75rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child {
  border-right: none;
}
.stat-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  font-weight: 300;
  display: block;
  line-height: 1;
}
.stat-key {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 0.3rem;
  display: block;
}

/* SHARED */
.section {
  padding: 5.5rem 3rem;
}
.eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.65rem;
}
.h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
}
.h2 em {
  font-style: italic;
}
.body-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--mid);
  margin-top: 1.1rem;
  max-width: 500px;
}
.body-text + .body-text {
  margin-top: 0.85rem;
}

/* Section modifiers */
.section--bg {
  background: var(--off-white);
}
.section--flush {
  padding: 0;
}

/* ABOUT SPLIT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  background: var(--white);
  padding: 1.1rem 1.4rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.badge-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.badge-l {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}

/* GALLERY */
.gallery-wrap {
  padding: 0 3rem 5.5rem;
}
.bldg-gallery-wrap {
  padding: 0 3rem 5.5rem;
}
.gallery-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1.25rem;
}
.g-hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 380px;
  gap: 5px;
  margin-bottom: 5px;
}
.g-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px;
  gap: 5px;
  margin-bottom: 5px;
}
.g-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px;
  gap: 5px;
  margin-bottom: 5px;
}
.g-row3--tall {
  grid-template-rows: 300px;
}
.g-views {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px;
  gap: 5px;
}
.g-cell {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.g-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}
.g-cell:hover img {
  transform: scale(1.04);
}
.g-lbl {
  position: absolute;
  bottom: 0.65rem;
  left: 0.75rem;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(20, 20, 20, 0.52);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 0.28rem 0.65rem;
}

/* LIGHTBOX */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.96);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
}
.lb.open {
  display: flex;
}
.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}
.lb-close:hover {
  color: var(--white);
}
.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.4rem;
  width: 46px;
  height: 46px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-prev {
  left: 1.5rem;
}
.lb-next {
  right: 1.5rem;
}
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.feat-card {
  padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.feat-card:hover {
  background: var(--off-white);
}
.feat-icon {
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.feat-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.45rem;
}
.feat-desc {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--mid);
}
.feat-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-lt);
  transition: color 0.2s, border-color 0.2s;
}
.feat-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* LOCATION */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.loc-img {
  position: relative;
  overflow: hidden;
}
.loc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.loc-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 55%,
    var(--white) 100%
  );
}
.loc-info {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.loc-addr {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.45;
  margin: 1.1rem 0 1.75rem;
}
.nearby {
  display: flex;
  flex-direction: column;
}
.nb {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}
.nb:last-child {
  border-bottom: none;
}
.nb-dist {
  font-size: 0.68rem;
  color: var(--gold-text);
  letter-spacing: 0.1em;
}
.nearby--medical {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.nearby-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* BOOK */
.book-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.book-l {
  background: var(--dark);
  padding: 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.book-l::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 70px solid rgba(184, 150, 90, 0.06);
  pointer-events: none;
}
.book-l .eyebrow {
  color: var(--gold-lt);
}
.book-l .h2 {
  color: var(--white);
}
.book-l .body-text {
  color: rgba(255, 255, 255, 0.5);
  max-width: 360px;
}
.perks {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.perk {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}
.pdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.book-r {
  padding: 5rem 3.5rem;
}
.book-r-h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.ff {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.ff label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.ff input,
.ff select,
.ff textarea {
  border: 1px solid var(--border);
  padding: 0.72rem 0.9rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.ff input:focus,
.ff select:focus,
.ff textarea:focus {
  border-color: var(--gold);
}
.ff textarea {
  resize: vertical;
  min-height: 80px;
}
.guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--border);
  margin-bottom: 0.85rem;
}
.guests-lbl {
  font-size: 0.78rem;
  color: var(--mid);
}
.gc {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.gb {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.gb:hover {
  border-color: var(--gold);
  color: var(--gold);
}
#gcnt {
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 1.5rem;
  text-align: center;
}
.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--dark);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 0.35rem;
  transition: background 0.2s;
}
.btn-submit:hover {
  background: var(--gold);
}
.form-note {
  font-size: 0.65rem;
  color: var(--mid);
  text-align: center;
  margin-top: 0.65rem;
  line-height: 1.5;
}

/* REVIEWS */
.reviews-bg {
  background: var(--off-white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.25rem;
}
.rv {
  background: var(--white);
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.rv-stars {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}
.rv-q {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--dark);
  margin-bottom: 1.1rem;
}
.rv-a {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.fl-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}
.fl-addr {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 3px;
}
.fl-links {
  display: flex;
  gap: 1.75rem;
}
.fl-links a {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.fl-links a:hover {
  color: var(--gold-lt);
}
.fl-copy {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.2);
}

/* MAP */
.map-wrap {
  padding: 5.5rem 3rem;
  background: var(--off-white);
}
.map-inner {
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-frame {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
.map-frame--hidden {
  display: none;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 380px;
  background: var(--white);
  text-align: center;
  padding: 2rem;
  gap: 1.1rem;
}
.map-placeholder-icon {
  color: var(--border);
}
.map-placeholder-msg {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.7;
}
.map-placeholder-sub {
  font-size: 0.7rem;
  color: var(--border);
  margin-top: 0.2rem;
  display: block;
}
.map-enable-btn {
  padding: 0.7rem 1.75rem;
  background: var(--dark);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.map-enable-btn:hover {
  background: var(--gold);
}
@media (max-width: 860px) {
  .map-wrap {
    padding: 3.5rem 1.5rem;
  }
  .map-frame,
  .map-placeholder {
    height: 260px;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 2px solid rgba(184, 150, 90, 0.35);
  z-index: 450;
  padding: 1.25rem 3rem;
  display: none;
}
.cookie-banner.visible {
  display: block;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.cookie-text {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}
.cookie-text strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.3rem;
}
.cookie-btns {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}
.cookie-decline {
  padding: 0.6rem 1.25rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "DM Sans", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.cookie-decline:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
}
.cookie-accept {
  padding: 0.6rem 1.25rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover {
  background: var(--gold-lt);
}
.cookie-link {
  color: var(--gold-lt);
}
.cookie-link:hover {
  color: var(--white);
}
@media (max-width: 860px) {
  .cookie-banner {
    padding: 1.25rem 1.5rem;
  }
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .cookie-btns {
    width: 100%;
  }
  .cookie-decline,
  .cookie-accept {
    flex: 1;
    text-align: center;
  }
}

/* TOAST */
.toast {
  position: fixed;
  bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 2rem + env(safe-area-inset-bottom, 0px)));
  background: var(--dark);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  z-index: 999;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.toast.error {
  background: #c0392b;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* ── AVAILABILITY SECTION ─────────────────────────────────────────────────── */
.avail-section {
  padding: 5.5rem 3rem;
  max-width: 960px;
  margin: 0 auto;
}

/* Search bar */
.avail-search { margin-top: 2.5rem; }
.avail-inputs {
  display: flex;
  align-items: flex-end;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.avail-inputs .ff { flex: 1; min-width: 140px; margin-bottom: 0; }
.avail-check-btn {
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 0.72rem 1.75rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  align-self: flex-end;
  height: 42px;
}
.avail-check-btn:hover { background: var(--gold); }

/* Result banner */
.avail-result {
  margin-top: 1rem;
  padding: 0.9rem 1.25rem;
  font-size: 0.82rem;
  line-height: 1.5;
  display: none;
}
.avail-result.available {
  display: block;
  background: #fdf8f0;
  border-left: 3px solid var(--gold);
  color: var(--dark);
}
.avail-result.unavailable {
  display: block;
  background: #f5f3f0;
  border-left: 3px solid #b0a89e;
  color: var(--mid);
}
.avail-result strong { font-weight: 500; }

/* Calendar navigation */
.avail-cal-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.75rem;
  margin-bottom: 1rem;
}
.avail-nav-btn {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--mid);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.avail-nav-btn:hover { color: var(--dark); border-color: var(--dark); }
.avail-period {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--dark);
}

/* Two-month grid */
.avail-calendars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1.75rem;
}

/* Single month */
.avail-month {}
.avail-month-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}
.avail-month-rate {
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.01em;
}

/* Weekday header */
.avail-wdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.3rem;
}
.avail-wday {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light);
  text-align: center;
  padding: 0.2rem 0;
}

/* Day grid */
.avail-days { display: grid; grid-template-columns: repeat(7, 1fr); }

.avail-day {
  min-height: 2.8rem;
  padding-top: 0.45rem;
  padding-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--mid);
  position: relative;
  cursor: default;
  transition: background 0.15s;
}
.avail-day--clickable {
  cursor: pointer;
}
.avail-day--clickable:hover:not(.range-start):not(.range-end):not(.in-range) {
  background: var(--off-white);
}

/* Other-month filler days */
.avail-day.filler { color: transparent; pointer-events: none; }

/* Today */
.avail-day.today::after {
  content: '';
  position: absolute;
  top: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  pointer-events: none;
}

/* Booked / not available */
.avail-day.booked {
  background: #f0ede8;
  color: #c4bdb5;
  cursor: not-allowed;
}
.avail-day.booked::before {
  content: '';
  position: absolute;
  inset: 18%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 2px,
    #ddd8d2 2px,
    #ddd8d2 3px
  );
  border-radius: 2px;
}

/* User-selected range */
.avail-day.in-range {
  background: #fdf3e4;
  color: var(--dark);
}
.avail-day.range-start,
.avail-day.range-end {
  background: var(--gold);
  color: var(--white);
  font-weight: 500;
}
.avail-day.range-start.range-end { background: var(--gold); }

/* Nightly rate label inside day cell */
.avail-day-nightly {
  position: absolute;
  bottom: 0.3rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.62rem;
  font-family: "DM Sans", sans-serif;
  color: var(--gold);
  line-height: 1;
  pointer-events: none;
  letter-spacing: 0.01em;
}
.avail-day.range-start .avail-day-nightly,
.avail-day.range-end   .avail-day-nightly { color: rgba(255,255,255,0.85); }
.avail-day.in-range    .avail-day-nightly { color: #b8965a; }

/* Beyond 6-month booking horizon */
.avail-day.beyond {
  background: #f0ede8;
  color: #c4bdb5;
  cursor: not-allowed;
}
.avail-day.beyond::before {
  content: '';
  position: absolute;
  inset: 18%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 2px,
    #ddd8d2 2px,
    #ddd8d2 3px
  );
  border-radius: 2px;
}

/* Past days — same visual treatment as booked/unavailable */
.avail-day.past {
  background: #f0ede8;
  color: #c4bdb5;
  cursor: not-allowed;
}
.avail-day.past::before {
  content: '';
  position: absolute;
  inset: 18%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 2px,
    #ddd8d2 2px,
    #ddd8d2 3px
  );
  border-radius: 2px;
}

/* Legend */
.avail-legend {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.avail-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--mid);
}
.avail-swatch {
  width: 16px;
  height: 16px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.avail-swatch--open   { background: var(--white); }
.avail-swatch--booked {
  background: #f0ede8;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 2px,
    #ddd8d2 2px,
    #ddd8d2 3px
  );
}
.avail-swatch--selected { background: var(--gold); border-color: var(--gold); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 860px) {
  nav {
    padding: 0.9rem 1.5rem;
  }
  .nav-links a:not(.nav-book):not(.nav-cta-btn) {
    display: none;
  }
  .avail-section { padding: 3.5rem 1.5rem; }
  .avail-calendars { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.25rem; }
  .avail-inputs { flex-direction: column; align-items: stretch; }
  .avail-check-btn { width: 100%; }
  .section {
    padding: 3.5rem 1.5rem;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img img {
    height: 300px;
  }
  .about-badge {
    right: 0;
  }
  .gallery-wrap,
  .bldg-gallery-wrap {
    padding: 0 1.5rem 3.5rem;
  }
  .g-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .g-hero .g-cell {
    height: 260px;
  }
  .g-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px;
  }
  .g-row3 {
    grid-template-rows: 200px;
  }
  .g-views {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .g-views .g-cell {
    height: 240px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .loc-grid {
    grid-template-columns: 1fr;
  }
  .loc-img {
    height: 280px;
  }
  .loc-img-fade {
    background: linear-gradient(
      to bottom,
      transparent 60%,
      var(--white) 100%
    );
  }
  .loc-info {
    padding: 2.5rem 1.5rem;
  }
  .book-wrap {
    grid-template-columns: 1fr;
  }
  .book-l {
    padding: 3rem 1.5rem;
  }
  .book-r {
    padding: 3rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  .fl-links {
    justify-content: center;
  }
  .hero-content {
    padding: 0 1.5rem 4rem;
  }
  .hero-dots {
    right: 1.5rem;
  }
}

/* ── Flatpickr theme ─────────────────────────────────────────────────────── */
.flatpickr-calendar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.10);
  font-family: "DM Sans", sans-serif;
}
.flatpickr-calendar.arrowTop::before  { border-bottom-color: var(--border); }
.flatpickr-calendar.arrowTop::after   { border-bottom-color: var(--white); }
.flatpickr-calendar.arrowBottom::before { border-top-color: var(--border); }
.flatpickr-calendar.arrowBottom::after  { border-top-color: var(--white); }

.flatpickr-months { background: var(--white); }
.flatpickr-month  { background: var(--white); }

.flatpickr-current-month {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  padding: 0.3rem 0;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  background: var(--white);
  -webkit-appearance: none;
  appearance: none;
  border: none;
}
.flatpickr-current-month .numInputWrapper input.cur-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
}
.flatpickr-prev-month,
.flatpickr-next-month { color: var(--gold) !important; fill: var(--gold) !important; }
.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg { fill: var(--dark) !important; }

.flatpickr-weekdays  { background: var(--white); }
span.flatpickr-weekday {
  font-family: "DM Sans", sans-serif;
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 400;
  background: var(--white);
}

.flatpickr-day {
  border-radius: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  color: var(--dark);
  border: none;
  height: 34px;
  line-height: 34px;
  max-width: 34px;
}
.flatpickr-day:hover,
.flatpickr-day:focus {
  background: var(--off-white);
  border-color: transparent;
}
.flatpickr-day.today {
  border-bottom: 2px solid var(--gold);
  font-weight: 500;
}
.flatpickr-day.today:hover {
  background: var(--off-white);
  color: var(--dark);
  border-bottom: 2px solid var(--gold);
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  font-weight: 500;
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: var(--border);
  background: transparent;
}

.ff .flatpickr-input { cursor: pointer; }

/* ── RTL (Hebrew) overrides ─────────────────────────────────────────────────── */
[dir="rtl"] .skip-nav               { left: auto; right: 1rem; }
[dir="rtl"] .lang-dropdown          { margin-left: 0; margin-right: 1.25rem; }

/* Stats grid — border flips */
[dir="rtl"] .stat                   { border-right: none; border-left: 1px solid var(--border); }
[dir="rtl"] .stat:last-child        { border-left: none; }

/* About badge — anchor to left side in RTL */
[dir="rtl"] .about-badge            { right: auto; left: -1.5rem; }

/* Features grid — inner border flips */
[dir="rtl"] .features-grid         { border-left: none; border-right: 1px solid var(--border); }
[dir="rtl"] .feat-card              { border-right: none; border-left: 1px solid var(--border); }

/* Location image fade — gradient direction */
[dir="rtl"] .loc-img-fade {
  background: linear-gradient(to left, transparent 55%, var(--white) 100%);
}

/* Book section decorative circle */
[dir="rtl"] .book-l::before        { right: auto; left: -80px; }

/* Result banners — accent border flips */
[dir="rtl"] .avail-result.available   { border-left: none; border-right: 3px solid var(--gold); }
[dir="rtl"] .avail-result.unavailable { border-left: none; border-right: 3px solid #b0a89e; }

/* ── Availability pricing card ──────────────────────────────────────────────── */
.avail-price-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.85rem;
}
.avail-price-status {
  font-family: "DM Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 0.2em 0.55em;
  border-radius: 2px;
  flex-shrink: 0;
}
.avail-price-range {
  font-size: 0.8rem;
  color: var(--mid);
}
.avail-price-body {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.8rem 0.95rem;
  margin-bottom: 0.7rem;
}
.avail-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.82rem;
  padding: 0.2rem 0;
  color: var(--dark);
}
.avail-price-section {
  font-family: "DM Sans", sans-serif;
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 0.65rem 0 0.25rem;
  padding: 0;
}
.avail-price-tax {
  color: var(--mid);
  font-size: 0.76rem;
}
.avail-tax-pct {
  color: #c5bcb3;
  font-size: 0.71rem;
}
.avail-price-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.55rem 0 0.35rem;
}
.avail-price-total {
  padding: 0.1rem 0 !important;
  font-size: 0.86rem !important;
}
.avail-price-total strong {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--dark);
}
.avail-price-cta {
  font-size: 0.77rem;
  color: var(--mid);
  font-style: italic;
  margin: 0.4rem 0 0;
}
.avail-price-no-rates {
  font-size: 0.78rem;
  color: var(--mid);
  font-style: italic;
  margin: 0 0 0.4rem;
}
.avail-price-disclaimer {
  font-size: 0.72rem;
  color: #c5bcb3;
  line-height: 1.65;
  margin-top: 0.8rem;
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
}

/* ── Tax savings callout ─────────────────────────────────────────────────────── */
.avail-tax-saving {
  font-size: 0.78rem;
  line-height: 1.5;
  padding: 0.65rem 0.85rem;
  margin: 0.85rem 0 0.5rem;
  border-radius: 2px;
}
.avail-tax-saving--active {
  background: #eef7ee;
  border: 1px solid #b4d9b4;
  color: #2d5a2d;
}
.avail-tax-saving--nudge {
  background: #fdf8ee;
  border: 1px solid #e8d89a;
  color: #6b5700;
}

/* ── Book button (availability result) ──────────────────────────────────────── */
.avail-book-btn {
  display: block;
  width: 100%;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  background: var(--dark);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  margin: 0.85rem 0 0.5rem;
  transition: background 0.2s;
}
.avail-book-btn:hover {
  background: #333;
}

/* ── Day rate modal ─────────────────────────────────────────────────────── */
.drm {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.drm.open {
  display: flex;
}
.drm-panel {
  background: var(--white);
  padding: 2.75rem 3.5rem 2.25rem;
  text-align: center;
  position: relative;
  max-width: 340px;
  width: 90%;
  border-top: 2px solid var(--gold);
  box-shadow: 0 20px 60px rgba(20, 20, 20, 0.22);
}
.drm-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--mid);
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s;
}
.drm-close:hover { color: var(--dark); }
.drm-weekday {
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.3rem;
}
.drm-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1.75rem;
}
.drm-rate {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.drm-unit {
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.drm-note {
  font-size: 0.56rem;
  color: var(--border);
  letter-spacing: 0.1em;
}

/* ── Payment Methods Section ───────────────────────────────────────────────── */
.payment-methods-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
}
.payment-methods-inner {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}
.payment-methods-header {
  margin-bottom: 2.5rem;
}
.payment-methods-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 300;
  color: var(--dark);
  margin: 0.4rem 0 0.75rem;
}
.payment-methods-desc {
  font-size: 0.82rem;
  color: var(--mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 860px) { .payment-methods-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .payment-methods-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; } }
.pm-card {
  border: 1px solid var(--border);
  padding: 1.25rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pm-card:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(184, 149, 106, 0.1);
}
.pm-icons-row {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 36px;
}
.pm-icon {
  width: 44px;
  height: 28px;
  border-radius: 3px;
  display: block;
}
.pm-card-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
}
.pm-card-desc {
  font-size: 0.72rem;
  color: var(--mid);
  line-height: 1.45;
  text-align: center;
}
.payment-secure-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: var(--light);
  letter-spacing: 0.06em;
}
