:root {
  --paper: #f7fcf5;
  --ink: #151713;
  --charcoal: #252825;
  --muted: #667061;
  --line: #dde8d7;
  --leaf: #126b3a;
  --leaf-dark: #0a4526;
  --gold: #b99955;
  --white: #fff;
  --shadow: 0 24px 70px rgba(15, 24, 16, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

body.modal-is-open {
  overflow: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 5vw, 76px);
  background: linear-gradient(180deg, rgba(0,0,0,.44), rgba(0,0,0,0));
  color: var(--white);
  backdrop-filter: none;
  transition: height .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  height: 82px;
  background: rgba(20, 22, 20, .58);
  backdrop-filter: blur(14px);
}

.page-header {
  background: rgba(20, 22, 20, .92);
  backdrop-filter: blur(14px);
  height: 76px;
}

.page-main {
  padding-top: 76px;
}

.page-hero {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: 78px 0 24px;
  text-align: center;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.7;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 3.35vw, 2.85rem);
  line-height: 1.08;
}

.page-hero--centered {
  text-align: center;
}

.page-hero--centered h1 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(1.85rem, 3.35vw, 2.85rem);
  line-height: 1.08;
}

.page-hero--centered p:not(.eyebrow) {
  margin-inline: auto;
}

.page-visual {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  display: grid;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-visual img,
.page-visual video {
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
}

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

.brand {
  font-family: Montserrat, Inter, system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: clamp(82px, 9vw, 118px);
  height: 58px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: .92rem;
  font-weight: 700;
}

.nav a:not(.nav-cta):not(.nav-account)::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 8px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

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

.nav-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.nav-account:hover {
  background: var(--white);
  color: var(--ink);
}

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.nav-cta:hover,
.button:hover,
.booking-panel button:hover,
.contact-form button:hover,
.footer-newsletter button:hover,
.dashboard-date-form .button:hover,
.dashboard-card-actions button:hover,
.booking-suggestions button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(18,107,58,.24), 0 0 0 5px rgba(185,153,85,.15);
}

.footer-newsletter button:hover {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 20px 44px rgba(185,153,85,.28), 0 0 0 6px rgba(247,252,245,.18);
}

.nav-cta, .primary {
  background: linear-gradient(135deg, var(--leaf), var(--leaf-dark));
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.glass {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}

.apartment-detail-page .button.glass {
  border-color: rgba(18,107,58,.55);
  background: rgba(247,252,245,.92);
  color: var(--leaf-dark);
  box-shadow: inset 0 0 0 1px rgba(18,107,58,.08);
}

.apartment-detail-page .button.glass:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.button.outline {
  border: 1px solid rgba(18,107,58,.55);
  background: rgba(247,252,245,.92);
  color: var(--leaf-dark);
  box-shadow: inset 0 0 0 1px rgba(18,107,58,.08);
}

.button.outline:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 880px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease, transform 4.5s ease;
}

.hero-media.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.2)),
    linear-gradient(0deg, rgba(0,0,0,.42), rgba(0,0,0,.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 36px, 1050px);
  margin: 70px auto 0;
  text-align: center;
}

.hero-copy {
  display: none;
  min-height: 315px;
  align-content: center;
  animation: hero-copy-in .75s ease both;
}

.hero-copy.is-active {
  display: grid;
}

.hero-copy--comfort {
  text-align: left;
  max-width: 760px;
  margin-right: auto;
}

.hero-copy--comfort .eyebrow::after,
.hero-copy--comfort h1,
.hero-copy--comfort p {
  margin-left: 0;
}

.hero-copy--privacy {
  max-width: 860px;
  margin-left: auto;
  padding-right: clamp(0px, 5vw, 70px);
  text-align: right;
}

.hero-copy--privacy .eyebrow::after,
.hero-copy--privacy h1,
.hero-copy--privacy p {
  margin-right: 0;
}

.hero-copy--tour h1 {
  letter-spacing: .04em;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow { color: rgba(255,255,255,.82); }
.section .eyebrow,
.page-main .eyebrow {
  font-size: .66rem;
}
.hero .eyebrow::after,
.page-hero .eyebrow::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin: 14px auto 0;
  background: var(--gold);
}

h1, h2, h3 {
  margin: 0;
  font-family: Montserrat, Inter, system-ui, sans-serif;
  line-height: 1.04;
}

h1 {
  max-width: 1120px;
  margin: 0 auto 22px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: width .25s ease, background .25s ease, border-color .25s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--gold);
  border-color: var(--gold);
}

.booking-panel {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: min(100% - 72px, 980px);
  display: grid;
  grid-template-columns: 1fr 1fr .78fr 1.25fr 1.5fr;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.booking-panel label {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.booking-panel input, .booking-panel select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 700;
}

.booking-actions-inline {
  display: grid;
  grid-template-columns: 1fr 0fr;
  overflow: hidden;
  transition: grid-template-columns .35s ease;
}

.booking-actions-inline.is-ready {
  grid-template-columns: minmax(150px, 1fr) minmax(112px, .82fr);
}

.booking-panel button,
.booking-panel .book-now-inline {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 100%;
  padding: 0 16px;
  border: 0;
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  white-space: normal;
}

.booking-panel button {
  background: var(--leaf);
}

.booking-panel .book-now-inline {
  background: var(--gold);
  color: var(--white);
  opacity: 0;
  transform: translateX(18px);
  padding-inline: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .35s ease;
}

.booking-actions-inline.is-ready .book-now-inline {
  opacity: 1;
  transform: translateX(0);
  padding-inline: 16px;
  pointer-events: auto;
}

.booking-status {
  grid-column: 1 / -1;
  padding: 14px 20px 16px;
  border-top: 1px solid var(--line);
  background: rgba(247, 252, 245, .96);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.55;
}

.booking-status[data-state="available"] {
  color: var(--leaf-dark);
  background: #edf7ec;
}

.booking-status[data-state="unavailable"],
.booking-status[data-state="error"] {
  color: #8c2d22;
  background: #fff0ed;
}

.booking-status.is-contact {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.booking-status strong,
.booking-status span {
  display: block;
}

.booking-pass {
  display: grid;
  gap: 16px;
  color: var(--ink);
}

.booking-pass h3 {
  margin: 4px 0 6px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.booking-pass p {
  margin: 0;
  color: var(--muted);
}

.booking-pass__barcode {
  display: flex;
  align-items: stretch;
  width: min(100%, 560px);
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(15,24,16,.14);
  border-radius: 8px;
  background: var(--white);
  overflow-x: auto;
}

.booking-pass__barcode span {
  flex: 0 0 auto;
  min-height: 56px;
}

.booking-pass__barcode .bar {
  background: var(--ink);
}

.booking-pass__barcode .gap {
  background: transparent;
}

.booking-pass__barcode .narrow {
  width: 2px;
}

.booking-pass__barcode .wide {
  width: 6px;
}

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

.booking-pass dl div {
  padding: 12px;
  border: 1px solid rgba(18,107,58,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.68);
}

.booking-pass dt {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.booking-pass dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.booking-login-note {
  margin: 14px 0 0;
  color: var(--leaf-dark);
}

.login-section {
  width: min(100% - 40px, 1120px);
  margin: 0 auto 86px;
}

.login-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.login-form,
.login-aside,
.login-results {
  border: 1px solid rgba(18,107,58,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 22px 60px rgba(15, 24, 16, .12);
}

.login-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 40px);
}

.login-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.login-form input {
  min-height: 46px;
  border: 1px solid rgba(18,107,58,.18);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(247,252,245,.9);
  color: var(--ink);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.password-control {
  position: relative;
  display: block;
}

.password-control input {
  width: 100%;
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--leaf-dark);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  transform: translateY(-50%);
}

.password-toggle:hover,
.password-toggle:focus-visible {
  background: rgba(32, 114, 70, .1);
  color: var(--green-dark);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.password-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-toggle__pupil {
  fill: currentColor;
  stroke: none;
}

.password-toggle__slash {
  opacity: 0;
  transform-origin: center;
  transition: opacity .2s ease;
}

.password-toggle.is-visible .password-toggle__slash {
  opacity: 1;
}

.login-secondary {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--leaf-dark);
  font-size: .9rem;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
}

.login-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
}

.reset-form {
  background: rgba(247,252,245,.92);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal__shade {
  position: absolute;
  inset: 0;
  background: rgba(5, 17, 10, .64);
  backdrop-filter: blur(8px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(18,107,58,.2);
  border-radius: 999px;
  background: var(--white);
  color: var(--leaf-dark);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.login-aside {
  overflow: hidden;
}

.login-aside img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.login-aside div {
  padding: 28px;
}

.login-aside h2 {
  margin: 6px 0 10px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.login-aside p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.login-results {
  margin-top: 24px;
  padding: 24px;
}

.login-results h2 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.login-bookings {
  display: grid;
  gap: 12px;
}

.login-booking-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(18,107,58,.12);
  border-radius: 8px;
  background: rgba(247,252,245,.82);
}

.login-booking-card img {
  width: 110px;
  height: 86px;
  object-fit: cover;
  border-radius: 8px;
}

.login-booking-card h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.login-booking-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.login-booking-card strong {
  color: var(--leaf-dark);
  font-size: .9rem;
}

.dashboard-date-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 8px;
  align-items: end;
  margin-top: 12px;
}

.dashboard-date-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dashboard-date-form input {
  min-height: 42px;
  border: 1px solid rgba(18,107,58,.16);
  border-radius: 8px;
  padding: 0 10px;
  background: var(--white);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.dashboard-date-form .button {
  min-height: 42px;
  padding: 0 14px;
  font-size: .82rem;
}

.dashboard-card-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.dashboard-card-actions button {
  min-height: 40px;
  border: 1px solid rgba(127,29,29,.16);
  border-radius: 999px;
  padding: 0 14px;
  background: #fff7f7;
  color: #7f1d1d;
  font-weight: 900;
  cursor: pointer;
}

.dashboard-message {
  margin-bottom: 18px;
}

.dashboard-addons {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(18,107,58,.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(247,252,245,.9));
  box-shadow: 0 18px 52px rgba(15, 24, 16, .1);
}

.dashboard-addons h2 {
  margin: 6px 0 8px;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.1;
}

.dashboard-addons p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

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

.dashboard-addon-grid button {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(18,107,58,.14);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  position: relative;
  overflow: hidden;
}

.dashboard-addon-grid button::before {
  content: "+";
  position: absolute;
  right: 14px;
  top: 10px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(18,107,58,.1);
  color: var(--leaf-dark);
  font-weight: 900;
}

.dashboard-addon-grid button:hover {
  transform: translateY(-3px);
  background: var(--leaf);
  color: var(--white);
}

.dashboard-addon-grid strong {
  font-size: 1rem;
}

.dashboard-addon-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.dashboard-addon-grid button:hover span {
  color: rgba(255,255,255,.78);
}

.dashboard-addon-grid button:hover::before {
  background: rgba(255,255,255,.18);
  color: var(--white);
}

.dashboard-addon-grid em {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.booking-calendar {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(18,107,58,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.calendar-head strong {
  color: var(--ink);
  font-size: .92rem;
}

.calendar-head span {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid span {
  min-height: 32px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(247,252,245,.94);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 800;
}

.calendar-grid .is-booked {
  background: #d8ddd4;
  color: #8a9285;
  text-decoration: line-through;
}

.calendar-grid .is-selected {
  background: var(--leaf);
  color: var(--white);
  text-decoration: none;
}

.calendar-grid .is-past {
  opacity: .45;
}

.calendar-grid .is-empty {
  background: transparent;
}

.date-picker-popover {
  position: absolute;
  z-index: 80;
  padding: 14px;
  border: 1px solid rgba(18,107,58,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 22px 60px rgba(15, 24, 16, .18);
}

.date-picker-head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  text-align: center;
}

.date-picker-head button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(18,107,58,.16);
  border-radius: 999px;
  background: rgba(247,252,245,.96);
  color: var(--leaf-dark);
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.date-picker-head button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--leaf);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(18,107,58,.2);
}

.date-picker-head button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.date-picker-head strong {
  display: block;
  color: var(--ink);
  font-size: .92rem;
}

.date-picker-head span {
  display: block;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
}

.date-picker-weekdays,
.date-picker-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.date-picker-weekdays span {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.date-picker-grid button {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: rgba(247,252,245,.94);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
  cursor: pointer;
}

.date-picker-grid button:hover:not(:disabled) {
  background: var(--leaf);
  color: var(--white);
}

.date-picker-grid .is-booked {
  background: #d8ddd4;
  color: #8a9285;
  cursor: not-allowed;
  text-decoration: line-through;
}

.date-picker-grid .is-selected {
  background: var(--leaf);
  color: var(--white);
}

.date-picker-grid .is-past {
  opacity: .45;
  cursor: not-allowed;
}

.date-picker-grid .is-empty {
  background: transparent;
  pointer-events: none;
}

.dashboard-section {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: 86px 0 96px;
}

.dashboard-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18,107,58,.92), rgba(10,69,38,.86)),
    url("../img/section-pattern.jpg") center / cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.dashboard-head h1 {
  margin: 6px 0 6px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.dashboard-head p:last-child {
  margin: 0;
  color: rgba(255,255,255,.76);
}

.dashboard-section > h2 {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
}

.booking-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.booking-suggestions button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(18,107,58,.2);
  border-radius: 999px;
  background: var(--white);
  color: var(--leaf-dark);
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
}

.checkout-body {
  background:
    linear-gradient(180deg, rgba(247,252,245,.96), rgba(247,252,245,.9)),
    url("../img/IMG-20260823-WA0010.jpg") center / cover fixed;
}

.checkout-shell {
  width: min(100% - 40px, 1220px);
  margin: 0 auto;
  padding: 34px 0 80px;
}

.checkout-logo {
  display: inline-flex;
  width: 104px;
  height: 68px;
}

.checkout-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout-hero {
  max-width: 840px;
  padding: 42px 0 30px;
}

.checkout-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.checkout-hero p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.checkout-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

.checkout-side,
.checkout-form {
  border: 1px solid rgba(185,153,85,.28);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.checkout-side {
  position: sticky;
  top: 24px;
  overflow: hidden;
}

.checkout-selected {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 20px;
}

.checkout-selected img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.checkout-selected h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.checkout-side dl {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.checkout-side dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}

.checkout-side dt {
  color: var(--muted);
  font-weight: 800;
}

.checkout-side dd {
  margin: 0;
  font-weight: 900;
}

.payment-note {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: #edf7ec;
  color: var(--leaf-dark);
  font-size: .92rem;
}

.checkout-form {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.checkout-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.checkout-tabs button {
  min-height: 48px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.checkout-tabs button.is-active {
  background: var(--leaf);
  color: var(--white);
}

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

.checkout-card {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-align: left;
  cursor: pointer;
}

.checkout-card.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(185,153,85,.18);
}

.checkout-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

.checkout-card span,
.checkout-card em {
  color: var(--muted);
  font-size: .76rem;
  font-style: normal;
  font-weight: 800;
}

.checkout-card strong {
  font-size: .95rem;
}

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

.checkout-fields label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checkout-fields input,
.checkout-fields select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.video-toggle {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 154px;
  z-index: 3;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.section {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 116px) 0;
}

.intro {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.9rem);
}

.section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.stats {
  display: flex;
  gap: 34px;
  margin-top: 34px;
}

.stats span {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.stats strong {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.7rem;
  line-height: 1;
}

.portrait-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.portrait-stack img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-stack img:first-child { margin-top: 58px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 42px;
}

.section-head > a {
  color: var(--leaf);
  font-weight: 900;
}

.suites {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1240px) / 2));
  background:
    linear-gradient(90deg, rgba(247,252,245,.78), rgba(247,252,245,.5) 44%, rgba(247,252,245,.76)),
    url("../img/section-pattern.jpg") center / cover no-repeat;
  overflow: hidden;
}

.suites::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

.suites > * {
  position: relative;
  z-index: 1;
}

.suites .section-head h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.4vw, 3.65rem);
  line-height: 1.04;
}

.suite-slider {
  display: grid;
  gap: 22px;
}

.suite-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, calc((100% - 52px) / 3));
  gap: 26px;
  overflow-x: auto;
  padding: 2px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.suite-grid::-webkit-scrollbar {
  display: none;
}

.suite-card {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(185, 153, 85, .32);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(15,24,16,.08);
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.suite-card:hover,
.suite-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(185,153,85,.54);
  box-shadow: 0 22px 52px rgba(15,24,16,.12);
  outline: 0;
}

.suite-card > img,
.suite-card > video {
  width: 100%;
  height: 430px;
  object-fit: cover;
  filter: saturate(.95);
}

.suite-card.is-featured > video {
  cursor: pointer;
}

.suite-card div {
  padding: 24px;
}

.suite-card div > p {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.suite-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.24rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.18;
}

.suite-card span {
  display: inline-flex;
  margin: 0 6px 9px 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: #edf4e9;
  color: var(--leaf-dark);
  font-size: .78rem;
  font-weight: 800;
}

.suite-card footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.suite-card footer a {
  color: var(--leaf);
  font-weight: 900;
}

.suite-card footer strong {
  color: var(--gold);
}

.suite-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.suite-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(18,107,58,.22);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.suite-dots button.is-active {
  width: 30px;
  background: var(--leaf);
}

.suite-grid.page-grid {
  grid-auto-flow: row;
  grid-auto-columns: initial;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
}

.apartment-detail-page {
  padding-bottom: 80px;
}

.apartment-detail-hero,
.apartment-gallery,
.detail-highlights,
.apartment-detail-layout {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.apartment-detail-hero {
  display: grid;
  place-items: center;
  gap: 18px;
  text-align: center;
  padding: clamp(70px, 10vw, 130px) 0 34px;
}

.apartment-detail-hero h1 {
  max-width: 840px;
  margin-inline: auto;
  font-size: clamp(1.85rem, 3.5vw, 3.2rem);
  font-weight: 600;
}

.apartment-detail-hero p {
  max-width: 720px;
  margin-inline: auto;
  font-size: .95rem;
}

.apartment-detail-hero > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(185,153,85,.34);
  border-radius: 999px;
  background: rgba(247,252,245,.84);
  color: var(--leaf);
  line-height: 1;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.apartment-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
}

.apartment-gallery img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.apartment-gallery img:first-child {
  height: 560px;
  grid-row: span 2;
}

.detail-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 26px;
}

.detail-highlights article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(185,153,85,.24);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,252,245,.86));
  box-shadow: 0 18px 42px rgba(15,24,16,.07);
}

.detail-highlights article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: rgba(18,107,58,.08);
}

.detail-highlights span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-highlights strong {
  display: block;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.2;
}

.apartment-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
  padding-top: 56px;
}

.apartment-detail-layout h2 {
  margin: 34px 0 16px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 650;
}

.detail-section {
  margin-bottom: 38px;
}

.detail-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 28px;
  align-items: center;
  margin: 8px 0 42px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(18,107,58,.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(247,252,245,.96), rgba(255,255,255,.9));
  box-shadow: 0 22px 54px rgba(15,24,16,.08);
}

.detail-story ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-story li {
  position: relative;
  padding: 16px 16px 16px 44px;
  border: 1px solid rgba(185,153,85,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.84);
  font-weight: 700;
}

.detail-story li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--leaf);
  box-shadow: 0 0 0 6px rgba(18,107,58,.12);
}

.detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 10px 0 44px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--leaf-dark), var(--leaf));
  color: var(--white);
  box-shadow: 0 24px 58px rgba(18,107,58,.24);
}

.detail-cta .eyebrow,
.detail-cta p {
  color: rgba(255,255,255,.78);
}

.detail-cta .button {
  min-height: 44px;
  padding-inline: 22px;
  font-size: .84rem;
  white-space: nowrap;
  background: var(--white);
  color: var(--leaf-dark);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.detail-tile-grid,
.detail-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-tile-grid div,
.detail-review-grid article,
.detail-booking-card {
  border: 1px solid rgba(185,153,85,.28);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15,24,16,.07);
}

.detail-tile-grid div,
.detail-review-grid article {
  padding: 18px;
}

.detail-tile-grid strong,
.detail-review-grid strong {
  display: block;
  color: var(--leaf-dark);
  font-size: 1.05rem;
}

.detail-tile-grid span,
.detail-review-grid p {
  color: var(--muted);
}

.detail-booking-card {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.experience {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #eef4eb;
}

.experience .copy {
  width: min(100% - 40px, 820px);
  margin: 0 auto 42px;
  text-align: center;
}

.gallery {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .86fr 1fr;
  gap: 18px;
}

.gallery img, .gallery video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery > *:nth-child(2) {
  margin-top: 52px;
}

.page-gallery > *:nth-child(2) {
  margin-top: 0;
}

.media-gallery {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.media-gallery button {
  position: relative;
  min-height: 360px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--leaf-dark);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.media-gallery img,
.media-gallery video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .45s ease, filter .45s ease;
}

.media-gallery button > span {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(18,107,58,.05), rgba(18,107,58,.94));
  color: var(--white);
  text-align: left;
  opacity: 0;
  transition: opacity .28s ease;
}

.media-gallery button:hover > span,
.media-gallery button:focus-visible > span {
  opacity: 1;
}

.media-gallery button:hover img,
.media-gallery button:hover video,
.media-gallery button:focus-visible img,
.media-gallery button:focus-visible video {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.media-gallery small {
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.media-gallery strong {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.media-gallery em {
  max-width: 28ch;
  color: rgba(255,255,255,.82);
  font-style: normal;
  line-height: 1.45;
}

.media-gallery button[data-type="video"]::before {
  content: "Play";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(10,69,38,.52);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 4vw, 42px);
  background: rgba(6, 20, 12, .9);
}

.gallery-lightbox__stage {
  grid-column: 2;
  display: grid;
  place-items: center;
  min-height: 0;
}

.gallery-lightbox__stage img,
.gallery-lightbox__stage video {
  max-width: min(100%, 1120px);
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
}

.gallery-lightbox p {
  grid-column: 2;
  margin: 0;
  color: rgba(255,255,255,.86);
  text-align: center;
  font-weight: 800;
}

.gallery-lightbox button {
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.gallery-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 16px;
}

.gallery-lightbox__nav {
  width: 58px;
  height: 58px;
  font-size: 0;
}

.gallery-lightbox__nav::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.gallery-lightbox__nav--prev::before { transform: rotate(-45deg); }
.gallery-lightbox__nav--next::before { transform: rotate(135deg); }

.page-grid {
  padding-top: 38px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(15,24,16,.08);
}

.contact-form-heading {
  display: grid;
  grid-column: 1 / -1;
  gap: 6px;
}

.contact-form-heading h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
}

.contact-layout > div > h2 {
  font-size: clamp(1.55rem, 2.65vw, 2.35rem);
  line-height: 1.12;
}

.contact-form-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form-heading,
.contact-form-note,
.contact-form label:first-of-type,
.contact-form label:nth-of-type(7),
.contact-form label:last-of-type,
.contact-form button,
.contact-form .booking-status {
  grid-column: 1 / -1;
}

.contact-form-note {
  padding: 10px 12px;
  border: 1px solid rgba(18,107,58,.12);
  border-radius: 8px;
  background: rgba(247,252,245,.8);
  color: var(--leaf-dark);
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.55;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
  background: var(--paper);
  color: var(--ink);
  font-size: .9rem;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form textarea {
  min-height: 88px;
  resize: vertical;
}

.map-frame {
  overflow: hidden;
  min-height: 380px;
  margin-top: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.benefits {
  position: relative;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
  padding-inline: max(20px, calc((100% - 1240px) / 2));
  background:
    radial-gradient(circle at 16% 22%, rgba(185,153,85,.14), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(18,107,58,.12), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.62), rgba(238,244,235,.58));
  overflow: visible;
}

.benefits > * {
  position: relative;
  z-index: 1;
}

.benefits h2 {
  max-width: 520px;
  font-size: clamp(1.85rem, 3vw, 3.2rem);
  line-height: 1.06;
}

.offer-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  min-height: 250px;
  align-items: center;
}

.offer-grid a {
  position: relative;
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  border: 1px solid rgba(185, 153, 85, .34);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 36px rgba(15,24,16,.08);
  font-family: Montserrat, Inter, system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  overflow: hidden;
  z-index: 1;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease;
}

.offer-grid a:nth-child(1) {
  transform: translate(26px, 26px) rotate(-2deg);
  z-index: 2;
}

.offer-grid a:nth-child(2) {
  transform: translateY(-14px) rotate(1.25deg);
  z-index: 3;
}

.offer-grid a:nth-child(3) {
  transform: translate(-26px, 34px) rotate(-1deg);
  z-index: 1;
}

.offer-grid a::before {
  content: "";
  width: 44px;
  height: 3px;
  background: var(--gold);
  transition: width .28s ease, background .28s ease;
}

.offer-grid a::after {
  content: "View details";
  justify-self: start;
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  margin-top: 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(18,107,58,.1);
  color: var(--leaf-dark);
  font-family: Inter, sans-serif;
  font-size: .78rem;
  font-weight: 900;
  transform: translateY(8px);
  opacity: .82;
  transition: transform .28s ease, opacity .28s ease, background .28s ease, color .28s ease;
}

.offer-grid a:is(:hover, :focus-visible),
.offer-grid a.is-hovered {
  transform: translateY(-18px) rotate(0deg) scale(1.02) !important;
  border-color: rgba(18,107,58,.34);
  background: var(--leaf) !important;
  color: var(--white) !important;
  box-shadow: 0 28px 68px rgba(18,107,58,.28);
  z-index: 6;
  outline: 0;
}

.offer-grid a:is(:hover, :focus-visible)::before,
.offer-grid a.is-hovered::before {
  width: 84px;
  background: var(--white);
}

.offer-grid a:is(:hover, :focus-visible)::after,
.offer-grid a.is-hovered::after {
  transform: translateY(0);
  opacity: 1;
  background: var(--leaf);
  color: var(--white);
}

.offer-grid span {
  display: block;
  font-family: Inter, sans-serif;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  transition: color .28s ease;
}

.offer-grid a:is(:hover, :focus-visible) span,
.offer-grid a.is-hovered span {
  color: rgba(255,255,255,.86) !important;
}

.faq-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(135deg, rgba(247,252,245,.96), rgba(255,255,255,.9)),
    radial-gradient(circle at 12% 20%, rgba(185,153,85,.16), transparent 30%);
}

.faq-layout {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.faq-layout > div:first-child {
  position: sticky;
  top: 116px;
}

.faq-layout h2 {
  font-size: clamp(1.8rem, 3.3vw, 3.35rem);
  font-weight: 650;
  line-height: 1.06;
}

.faq-layout .button {
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid rgba(18,107,58,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 42px rgba(15,24,16,.06);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.faq-list details:hover,
.faq-list details[open] {
  transform: translateY(-2px);
  border-color: rgba(185,153,85,.44);
  box-shadow: 0 22px 54px rgba(18,107,58,.11);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 56px 22px 24px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  overflow-wrap: anywhere;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(18,107,58,.1);
  color: var(--leaf-dark);
  font-weight: 900;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--gold);
  color: var(--ink);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.7;
}

.site-footer {
  position: relative;
  padding: 72px max(20px, calc((100% - 1240px) / 2)) 28px;
  background:
    linear-gradient(90deg, rgba(15,24,16,.82), rgba(15,24,16,.66)),
    url("../img/section-pattern.jpg") center / cover no-repeat,
    var(--ink);
  background-blend-mode: normal, normal, normal;
  color: var(--white);
  overflow: hidden;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15,24,16,.1);
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.footer-logo {
  display: inline-flex;
  width: 104px;
  height: 68px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255,255,255,.68);
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}

.site-footer a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-phone {
  margin-top: 14px;
  color: rgba(255,255,255,.82) !important;
}

.footer-newsletter {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}

.footer-newsletter--center {
  grid-column: 1 / -1;
  width: min(100%, 540px);
  margin: 36px auto 0;
  text-align: center;
}

.footer-newsletter label {
  color: var(--gold);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-newsletter div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.footer-newsletter input {
  min-width: 0;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255,255,255,.08);
  color: var(--white);
}

.footer-newsletter--center input {
  min-height: 44px;
  padding-inline: 14px;
}

.footer-newsletter input::placeholder {
  color: rgba(255,255,255,.46);
}

.footer-newsletter button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.footer-newsletter--center button {
  min-height: 44px;
  padding-inline: 18px;
}

.footer-newsletter__status {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: .86rem;
}

.footer-newsletter__status[data-state="error"] {
  color: #ffd6d1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
}

.legal-content {
  max-width: 920px;
}

.legal-content h2 {
  margin: 30px 0 10px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.legal-content p {
  color: var(--muted);
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 24px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-updated {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(32, 114, 70, .08);
  color: var(--green-dark) !important;
  font-weight: 700;
  font-size: .86rem;
}

.about-hero {
  text-align: center;
}

.about-hero h1 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(1.85rem, 3.35vw, 2.85rem);
  line-height: 1.08;
}

.about-hero p:not(.eyebrow),
.about-copy p {
  margin-inline: auto;
}

.about-copy {
  max-width: 980px;
  text-align: center;
}

.about-copy h2 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(1.85rem, 3.4vw, 3.35rem);
}

.about-copy p {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.78;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.about-split--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

.about-split h2 {
  font-size: clamp(1.65rem, 3vw, 3rem);
}

.about-split p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.78;
}

.about-split img,
.about-split video {
  width: 100%;
  height: clamp(380px, 42vw, 560px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(18,107,58,.34);
}

.whatsapp svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp__prompt {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  width: max-content;
  max-width: 220px;
  padding: 11px 16px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 999px 999px 999px 10px;
  background: #f4ce37;
  color: #0a4526;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .01em;
  box-shadow: 0 18px 38px rgba(10,69,38,.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(14px, -50%) rotate(-3deg) scale(.9);
  animation: chatPromptPop 14s ease-in-out infinite;
}

.whatsapp__prompt::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: #f4ce37;
  border-top: 2px solid rgba(255,255,255,.7);
  border-right: 2px solid rgba(255,255,255,.7);
  transform: translateY(-50%) rotate(45deg);
}

@keyframes chatPromptPop {
  0%, 58%, 100% {
    opacity: 0;
    transform: translate(14px, -50%) rotate(-3deg) scale(.9);
  }
  10%, 40% {
    opacity: 1;
    transform: translate(0, -50%) rotate(-3deg) scale(1);
  }
}

@media (min-width: 1101px) {
  .site-header {
    height: 102px;
    padding-inline: clamp(18px, 4.5vw, 68px);
  }
  .hero {
    min-height: 800px;
  }
  .hero-content {
    padding-top: 0;
  }
  .hero-copy h1 {
    font-size: clamp(2.65rem, 5.4vw, 5.05rem);
    line-height: .98;
  }
  .hero-copy p {
    max-width: 620px;
    font-size: clamp(.96rem, 1.7vw, 1.12rem);
  }
  .booking-panel {
    width: min(100% - 88px, 980px);
  }
  .section {
    width: min(100% - 56px, 1180px);
    padding-block: clamp(64px, 7.8vw, 104px);
  }
  .suites,
  .experience,
  .benefits {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  h2 {
    font-size: clamp(2.15rem, 4.45vw, 4.35rem);
  }
  .section p {
    font-size: 1rem;
  }
  .intro {
    gap: clamp(32px, 6vw, 76px);
  }
  .portrait-stack img {
    height: 560px;
  }
  .suites {
    padding-inline: max(28px, calc((100% - 1180px) / 2));
  }
  .suites .section-head h2 {
    font-size: clamp(1.95rem, 3.05vw, 3.25rem);
  }
  .suite-grid {
    grid-auto-columns: minmax(320px, calc((100% - 48px) / 3));
    gap: 24px;
  }
  .suite-card > img,
  .suite-card > video {
    height: 388px;
  }
  .suite-card div {
    padding: 22px;
  }
  .suite-card h3 {
    font-size: 1.38rem;
  }
  .apartment-detail-hero h1 {
    font-size: clamp(1.85rem, 3.5vw, 3.2rem);
  }
  .apartment-gallery img {
    height: 390px;
  }
  .apartment-gallery img:first-child {
    height: 510px;
  }
  .benefits {
    gap: 34px;
    padding-inline: max(28px, calc((100% - 1180px) / 2));
  }
  .benefits h2 {
    font-size: clamp(1.7rem, 2.65vw, 2.85rem);
  }
  .offer-grid {
    min-height: 228px;
  }
  .offer-grid a {
    min-height: 176px;
    padding: 24px;
    font-size: 1.42rem;
  }
  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 1100px) {
  .menu-button {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 999px;
    background: transparent;
  }
  .menu-button span {
    width: 18px;
    height: 2px;
    background: var(--white);
  }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    padding: 22px;
    border-radius: 8px;
    background: rgba(20,22,20,.96);
  }
  .nav.is-open { display: grid; }
  .booking-panel,
  .intro,
  .gallery,
  .page-visual.split,
  .benefits,
  .faq-layout,
  .contact-layout,
  .contact-form,
  .offer-grid,
  .footer-grid,
  .checkout-layout,
  .checkout-cards,
  .login-panel,
  .login-booking-card,
  .dashboard-date-form,
  .dashboard-addon-grid {
    grid-template-columns: 1fr;
  }
  .faq-layout > div:first-child {
    position: static;
  }
  .login-booking-card img {
    width: 100%;
    height: 180px;
  }
  .dashboard-head {
    align-items: start;
    flex-direction: column;
  }
  .dashboard-card-actions {
    justify-items: start;
  }
  .suite-grid {
    grid-auto-columns: minmax(300px, 78vw);
  }
  .suite-grid.page-grid,
  .apartment-gallery,
  .apartment-detail-layout,
  .detail-story,
  .about-split,
  .about-split--reverse,
  .detail-tile-grid,
  .detail-review-grid {
    grid-template-columns: 1fr;
  }
  .detail-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .apartment-detail-hero {
    grid-template-columns: 1fr;
  }
  .detail-cta {
    display: grid;
  }
  .detail-cta .button {
    width: fit-content;
  }
  .apartment-gallery img,
  .apartment-gallery img:first-child {
    height: 430px;
    grid-row: auto;
  }
  .detail-booking-card {
    position: static;
  }
  .booking-panel {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(100% - 44px, 620px);
    margin: 36px auto 0;
  }
  .booking-panel label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .booking-actions-inline {
    min-height: 58px;
  }
  .hero {
    min-height: auto;
    padding: 120px 0 48px;
  }
  .hero-copy,
  .hero-copy--comfort,
  .hero-copy--privacy {
    max-width: 100%;
    margin-inline: auto;
    padding-right: 0;
    text-align: center;
  }
  .hero-copy--comfort .eyebrow::after,
  .hero-copy--comfort h1,
  .hero-copy--comfort p,
  .hero-copy--privacy .eyebrow::after,
  .hero-copy--privacy h1,
  .hero-copy--privacy p {
    margin-inline: auto;
  }
  .portrait-stack img,
  .gallery img,
  .gallery video {
    height: 470px;
  }
  .media-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-lightbox {
    grid-template-columns: 1fr;
  }
  .gallery-lightbox__stage,
  .gallery-lightbox p {
    grid-column: 1;
  }
  .gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .gallery-lightbox__nav--prev { left: 16px; }
  .gallery-lightbox__nav--next { right: 16px; }
  .checkout-side {
    position: static;
  }
  .benefits {
    padding-inline: 20px;
  }
  .offer-grid {
    gap: 16px;
    min-height: auto;
  }
  .offer-grid a,
  .offer-grid a:nth-child(1),
  .offer-grid a:nth-child(2),
  .offer-grid a:nth-child(3),
  .offer-grid a:hover {
    transform: none;
  }
  .offer-grid a {
    min-height: 170px;
  }
  .portrait-stack img:first-child,
  .gallery > *:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .site-header { height: 74px; }
  .page-hero {
    padding-top: 58px;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.8vw, 3.1rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
  .page-hero h1 {
    font-size: clamp(1.72rem, 8vw, 2.45rem);
  }
  .video-toggle {
    right: 16px;
    bottom: 24px;
  }
  .hero-actions, .stats, .portrait-stack, .section-head {
    display: grid;
  }
  .checkout-fields,
  .checkout-selected,
  .booking-pass dl {
    grid-template-columns: 1fr;
  }
  .suite-grid {
    grid-auto-columns: minmax(260px, 86vw);
  }
  .footer-bottom {
    display: grid;
  }
  .media-gallery {
    grid-template-columns: 1fr;
  }
  .media-gallery button {
    min-height: 330px;
  }
  .detail-highlights {
    grid-template-columns: 1fr;
  }
  .detail-story,
  .detail-cta {
    padding: 22px;
  }
  .button, .nav-cta { width: 100%; }
  .footer-newsletter div {
    grid-template-columns: 1fr;
  }
  .footer-newsletter button {
    width: 100%;
  }
  .whatsapp {
    top: auto;
    right: 16px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }
  .whatsapp__prompt {
    right: 0;
    top: auto;
    bottom: calc(100% + 10px);
    transform: translateY(12px) rotate(-3deg) scale(.9);
    animation-name: chatPromptPopMobile;
  }
  .whatsapp__prompt::after {
    right: 22px;
    top: auto;
    bottom: -8px;
    transform: rotate(135deg);
  }
  .portrait-stack img,
  .suite-card > img,
  .suite-card > video,
  .gallery img,
  .gallery video {
    height: 390px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.apartment-detail-page .apartment-detail-hero > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin-inline: auto;
  padding: 0 18px;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
}

@keyframes chatPromptPopMobile {
  0%, 58%, 100% {
    opacity: 0;
    transform: translateY(12px) rotate(-3deg) scale(.9);
  }
  10%, 40% {
    opacity: 1;
    transform: translateY(0) rotate(-3deg) scale(1);
  }
}
