/* MO Stays — public guest pages (mockup-aligned) */

:root {
  --stay-cream: #f7f7f5;
  --stay-cream-dark: #efeeeb;
  --stay-ink: #1a1a1a;
  --stay-ink-muted: #6b7280;
  --stay-gold: #b08d31;
  --stay-gold-dark: #96762a;
  --stay-gold-soft: #f5eed9;
  --stay-border: rgba(26, 26, 26, 0.1);
  --stay-radius: 12px;
  --stay-radius-lg: 16px;
  --stay-sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --stay-shadow: 0 10px 30px -14px rgba(26, 26, 26, 0.16);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

.stay-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--stay-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--stay-ink);
  background: var(--stay-cream);
  -webkit-font-smoothing: antialiased;
}

#apartments-list,
#how-it-works {
  scroll-margin-top: 24px;
}

/* Header */
.stay-header {
  background: var(--stay-cream);
  border-bottom: 1px solid var(--stay-border);
}

.stay-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.stay-brand { display: flex; align-items: center; text-decoration: none; }
.stay-brand-logo { height: 38px; width: auto; display: block; }

.stay-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stay-currency {
  margin: 0;
}

.stay-currency-select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 4.5rem;
  padding: 7px 28px 7px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--stay-ink);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='%23666'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  border: 1px solid var(--stay-border);
  border-radius: 999px;
  cursor: pointer;
}

.stay-currency-select:hover,
.stay-currency-select:focus {
  border-color: rgba(176, 141, 49, 0.45);
  outline: none;
}

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

.stay-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--stay-ink-muted);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.stay-nav-link:hover { color: var(--stay-ink); }
.stay-nav-link.is-active {
  color: var(--stay-ink);
  border-bottom-color: var(--stay-gold);
}

.stay-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--stay-ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--stay-border);
  border-radius: 999px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.stay-nav-btn:hover {
  border-color: rgba(176, 141, 49, 0.45);
  box-shadow: 0 2px 8px rgba(45, 45, 45, 0.06);
}

.stay-main { min-height: calc(100vh - 200px); }

/* Typography */
.stay-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stay-gold);
}

.stay-title {
  margin: 0;
  font-family: var(--stay-sans);
  font-size: clamp(2.1rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--stay-ink);
}

.stay-lead {
  margin: 12px auto 0;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--stay-ink-muted);
  text-align: center;
}

/* Hero — compact intro into listings */
.stay-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px 0;
}

.stay-hero-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 0 28px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.stay-hero-intro .stay-title {
  max-width: 18ch;
}

.stay-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 28px;
  margin-top: 22px;
}

.stay-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: var(--stay-ink);
  border-radius: 999px;
  transition: background 0.15s ease;
}

.stay-hero-cta:hover { background: #000; }

.stay-hero-cta-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--stay-ink);
  background: #fff;
  border-radius: 999px;
}

.stay-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stay-hero-points li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--stay-ink-muted);
}

.stay-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--stay-gold);
}

/* Listing section */
.stay-listing {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 24px;
}

.stay-listing-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.stay-listing-title {
  margin: 0;
  font-family: var(--stay-sans);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--stay-ink);
}

.stay-listing-sub {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--stay-ink-muted);
}

.stay-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stay-sort-label {
  font-size: 13px;
  color: var(--stay-ink-muted);
}

.stay-sort-select {
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--stay-ink);
  background: #fff;
  border: 1px solid var(--stay-border);
  border-radius: var(--stay-radius);
  cursor: pointer;
}

/* Cards — listing grid inspired by clean rental cards */
.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.stay-card {
  background: #fff;
  border: 1px solid var(--stay-border);
  border-radius: var(--stay-radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px -4px rgba(26, 26, 26, 0.08);
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.stay-card:hover {
  border-color: rgba(26, 26, 26, 0.16);
  box-shadow: var(--stay-shadow);
}

.stay-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.stay-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--stay-cream-dark);
}

.stay-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stay-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--stay-ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stay-card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 18px 20px 20px;
}

.stay-card-top { margin-bottom: 14px; }

.stay-card-price {
  margin: 0 0 4px;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--stay-ink);
}

.stay-card-price strong {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stay-card-price-unit {
  margin-left: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--stay-ink-muted);
}

.stay-card-location {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--stay-ink);
}

.stay-card-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 14px 0;
  list-style: none;
  border-top: 1px solid var(--stay-border);
  border-bottom: 1px solid var(--stay-border);
}

.stay-card-specs li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--stay-ink-muted);
}

.stay-card-specs svg {
  color: #9ca3af;
  flex-shrink: 0;
}

.stay-card-headline {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--stay-ink-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stay-card-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.stay-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--stay-gold-dark);
  transition: color 0.15s ease;
}

.stay-card:hover .stay-card-cta { color: var(--stay-ink); }

/* How it works */
.stay-how {
  margin-top: 28px;
  background: #f3f1ec;
  border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.stay-how-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px 56px;
  align-items: start;
}

.stay-how-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stay-gold-dark);
}

.stay-how-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--stay-ink);
}

.stay-how-lead {
  margin: 14px 0 0;
  max-width: 28rem;
  font-size: 15px;
  line-height: 1.6;
  color: var(--stay-ink-muted);
}

.stay-how-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.stay-how-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.stay-how-step:last-child {
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.stay-how-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--stay-gold-dark);
  padding-top: 3px;
}

.stay-how-step-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--stay-ink);
}

.stay-how-step-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--stay-ink-muted);
}

/* Footer */
.stay-footer {
  border-top: 1px solid var(--stay-border);
  background: var(--stay-cream-dark);
}

.stay-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.stay-footer-logo {
  display: block;
  height: 32px;
  width: auto;
  margin-bottom: 10px;
  opacity: 0.9;
}

.stay-footer-copy {
  margin: 0;
  font-size: 12px;
  color: var(--stay-ink-muted);
}

.stay-footer-contact { text-align: right; max-width: 360px; }

.stay-footer-note {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--stay-ink-muted);
}

.stay-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  margin: 0 0 14px;
}

.stay-footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--stay-ink);
  text-decoration: none;
}

.stay-footer-links a:hover {
  color: var(--stay-gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stay-footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.stay-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--stay-ink-muted);
  background: #fff;
  border: 1px solid var(--stay-border);
  border-radius: 50%;
  transition: color 0.15s, border-color 0.15s;
}

.stay-social-link:hover {
  color: var(--stay-gold-dark);
  border-color: var(--stay-gold);
}

/* Floating WhatsApp enquiry button */
.stay-whatsapp-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  color: #fff;
  text-decoration: none;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(18, 140, 70, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
}

.stay-whatsapp-fab svg {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.stay-whatsapp-fab:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(18, 140, 70, 0.4);
}

.stay-whatsapp-fab:focus-visible {
  outline: 2px solid #128c4a;
  outline-offset: 3px;
}

.stay-whatsapp-fab-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

@media (max-width: 719px) {
  .stay-whatsapp-fab-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (min-width: 720px) {
  .stay-whatsapp-fab {
    width: auto;
    height: auto;
    padding: 0.85rem 1.1rem 0.85rem 0.85rem;
    right: 1.35rem;
    bottom: 1.35rem;
  }
}

.stay-empty {
  max-width: 560px;
  margin: 48px auto;
  padding: 0 24px;
  text-align: center;
}

/* Detail page header */
.stay-detail-top {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px 0;
}

.stay-detail-crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--stay-ink-muted);
}

.stay-detail-crumb-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: -4px;
  color: var(--stay-ink);
  text-decoration: none;
  font-weight: 500;
}

.stay-detail-crumb-link svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.stay-detail-crumb-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stay-detail-crumb-sep {
  color: #c4c4c4;
  font-weight: 400;
}

.stay-detail-crumb-current {
  color: var(--stay-ink-muted);
  font-weight: 400;
}

.stay-detail-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4px 0 28px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  margin-bottom: 22px;
}

.stay-detail-heading .stay-kicker {
  margin-bottom: 10px;
}

.stay-detail-name {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--stay-ink);
}

.stay-detail-tagline {
  margin: 12px auto 0;
  max-width: 34rem;
  font-size: 1.05rem;
  color: var(--stay-ink-muted);
  line-height: 1.55;
}

.stay-detail-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.stay-detail-specs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--stay-ink);
  background: var(--stay-cream, #f7f5f1);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 999px;
}

.stay-detail-specs svg {
  flex-shrink: 0;
  color: var(--stay-gold-dark, var(--stay-gold));
}

.stay-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  margin: 14px 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--stay-ink);
  line-height: 1.45;
}

.stay-detail-meta-dot {
  margin: 0 8px;
  color: #b0b0b0;
  font-weight: 400;
}

/* Gallery mosaic — compact fixed height */
.stay-gallery {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px 0;
  position: relative;
}

.stay-gallery-mosaic {
  display: grid;
  gap: 6px;
  height: min(42vw, 300px);
  border-radius: var(--stay-radius-lg);
  overflow: hidden;
  background: var(--stay-cream-dark);
}

.stay-gallery-mosaic--1 {
  grid-template-columns: 1fr;
}

.stay-gallery-mosaic--2 {
  grid-template-columns: 1fr 1fr;
}

.stay-gallery-mosaic--3 {
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.stay-gallery-mosaic--3 .stay-gallery-tile--main {
  grid-row: 1 / -1;
}

.stay-gallery-mosaic--4 {
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.stay-gallery-mosaic--4 .stay-gallery-tile--main {
  grid-row: 1 / -1;
}

.stay-gallery-mosaic--4 .stay-gallery-tile:nth-child(4) {
  grid-column: 2 / -1;
}

.stay-gallery-mosaic--5 {
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.stay-gallery-mosaic--5 .stay-gallery-tile--main {
  grid-row: 1 / -1;
}

.stay-gallery-tile {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: #d4d0c8;
  cursor: pointer;
  overflow: hidden;
  min-height: 0;
  min-width: 0;
}

.stay-gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.15s ease;
}

.stay-gallery-tile:hover img { opacity: 0.92; }

.stay-gallery-more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.45);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.stay-gallery-all {
  position: absolute;
  right: 36px;
  bottom: 12px;
  z-index: 1;
  padding: 8px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--stay-ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--stay-border);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.12);
}

.stay-gallery-all:hover { background: #fff; }

.stay-detail-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
}

.stay-section-title {
  margin: 0 0 12px;
  font-family: var(--stay-sans);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stay-detail-section + .stay-detail-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--stay-border);
}

.stay-prose {
  margin: 0 0 14px;
  color: var(--stay-ink-muted);
  max-width: 42rem;
}

.stay-facts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stay-facts li {
  padding: 10px 0;
  border-bottom: 1px solid var(--stay-border);
  font-size: 14px;
  color: var(--stay-ink-muted);
}

.stay-facts strong {
  display: inline-block;
  min-width: 120px;
  color: var(--stay-ink);
}

.stay-share-row {
  display: flex;
  gap: 10px;
  max-width: 32rem;
}

.stay-share-input { flex: 1; font-size: 13px; }

/* Lightbox — controls aligned to the image */
.stay-lightbox {
  position: fixed;
  inset: 0;
  margin: 0;
  border: none;
  padding: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  background: transparent;
  overflow: visible;
}

.stay-lightbox::backdrop {
  background: rgba(18, 18, 18, 0.9);
}

.stay-lightbox-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(920px, calc(100vw - 48px));
  margin: 0 auto;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 56px 0 32px;
}

.stay-lightbox-viewer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: calc(100vh - 120px);
}

.stay-lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: min(52vh, 360px);
}

.stay-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  background: #111;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: opacity 0.15s ease;
}

.stay-lightbox-image.is-loading {
  opacity: 0;
}

.stay-lightbox-spinner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

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

.stay-lightbox-spinner-ring {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: #fff;
  border-radius: 50%;
  animation: stay-lightbox-spin 0.7s linear infinite;
}

@keyframes stay-lightbox-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .stay-lightbox-spinner-ring {
    animation: none;
    border-top-color: rgba(255, 255, 255, 0.55);
  }
  .stay-lightbox-image {
    transition: none;
  }
}

.stay-lightbox-caption {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.stay-lightbox-close,
.stay-lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  background: rgba(30, 30, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.15s ease;
}

.stay-lightbox-close:hover,
.stay-lightbox-nav:hover {
  background: rgba(50, 50, 50, 0.75);
}

.stay-lightbox-close {
  position: absolute;
  top: 12px;
  right: 0;
  z-index: 3;
  width: 40px;
  height: 40px;
}

.stay-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
}

.stay-lightbox-nav--prev { left: 12px; }
.stay-lightbox-nav--next { right: 12px; }

.stay-book-panel {
  position: sticky;
  top: 24px;
  overflow: visible;
  z-index: 4;
}

.stay-book-panel-inner {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 18px 40px -28px rgba(26, 26, 26, 0.35);
  overflow: visible;
}

.stay-book-price {
  margin-bottom: 18px;
}

.stay-book-price-line {
  margin: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}

.stay-book-price-val {
  font-family: var(--stay-sans);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--stay-ink);
}

.stay-book-price-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--stay-ink-muted);
}

.stay-book-price-note {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--stay-ink-muted);
}

.stay-book-form .stay-field { margin-bottom: 0; }

.stay-book-schedule {
  position: relative;
  margin-bottom: 4px;
  z-index: 5;
}

.stay-book-box {
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.stay-date-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.stay-date-half {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 0;
  padding: 12px 14px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  min-width: 0;
}

.stay-date-half + .stay-date-half {
  border-left: 1px solid rgba(26, 26, 26, 0.12);
}

.stay-date-half:hover { background: rgba(26, 26, 26, 0.02); }

.stay-date-half-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--stay-ink);
}

.stay-date-half-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--stay-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.stay-date-half-value.is-empty { color: #9ca3af; font-weight: 400; }

.stay-dates-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  opacity: 0;
  border: 0;
  padding: 0;
  margin: 0;
  pointer-events: none;
}

.stay-guest-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  cursor: pointer;
}

.stay-guest-select {
  width: 100%;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--stay-ink);
  padding: 0;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1.4 0.6L6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 18px;
  cursor: pointer;
}

.stay-guest-select:focus { outline: none; }

.stay-label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--stay-ink);
}

.stay-label-optional {
  font-weight: 500;
  color: var(--stay-ink-muted);
}

.stay-req { color: #b45309; }

.stay-input {
  width: 100%;
  padding: 12px 13px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--stay-ink);
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.stay-input:focus {
  outline: none;
  border-color: rgba(26, 26, 26, 0.35);
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.06);
}

.stay-input[readonly] { cursor: pointer; background: #fff; }

.stay-input::placeholder { color: #9ca3af; font-weight: 400; }

.stay-field-hint {
  display: block;
  margin-top: 8px;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--stay-ink-muted);
  background: transparent;
  border: none;
  border-radius: 0;
}

.stay-field-hint.is-error {
  margin-top: 8px;
  padding: 10px 12px;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
}

.stay-book-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.stay-book-total-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--stay-ink);
}

.stay-book-total-note {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--stay-ink-muted);
}

.stay-quote {
  margin: 0;
  font-family: var(--stay-sans);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--stay-ink);
  text-align: right;
}

.stay-book-guest {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

/* Guest calendar — Airbnb-like clarity */
.stay-book-form .datepicker {
  width: min(560px, calc(100vw - 32px)) !important;
  max-width: calc(100vw - 24px);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 16px;
  box-shadow: 0 24px 48px -20px rgba(26, 26, 26, 0.35);
  font-family: var(--stay-sans);
  color: var(--stay-ink);
  z-index: 80;
  overflow: visible;
  left: 0;
  right: auto;
  transform-origin: top left;
  will-change: opacity, transform;
  backface-visibility: hidden;
  box-sizing: border-box;
}

@media (min-width: 720px) {
  .stay-book-form .datepicker {
    left: auto;
    right: 0;
    transform-origin: top right;
  }
}

/* Mobile: centered modal card (not a bottom sheet) */
@media (max-width: 719px) {
  .stay-datepicker-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10040;
    background: rgba(26, 26, 26, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .stay-datepicker-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  body.stay-datepicker-open {
    overflow: hidden;
  }

  body.stay-datepicker-open .stay-whatsapp-fab {
    visibility: hidden;
    pointer-events: none;
  }

  .stay-guest-datepicker {
    position: fixed !important;
    left: max(0.75rem, env(safe-area-inset-left, 0px)) !important;
    right: max(0.75rem, env(safe-area-inset-right, 0px)) !important;
    top: max(0.75rem, env(safe-area-inset-top, 0px)) !important;
    bottom: auto !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100dvh - 1.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    margin: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    background: #fff !important;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(26, 26, 26, 0.28);
    font-family: var(--stay-sans);
    color: var(--stay-ink);
    z-index: 10050 !important;
    box-sizing: border-box;
    transform-origin: top center;
    -webkit-overflow-scrolling: touch;
  }

  .stay-guest-datepicker .datepicker__month--month2 {
    display: none !important;
  }

  .stay-guest-datepicker .datepicker__months {
    overflow: visible;
  }

  .stay-guest-datepicker .datepicker__months:before {
    display: none;
  }

  .stay-guest-datepicker .datepicker__month,
  .stay-guest-datepicker .datepicker__month--month1 {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
  }

  .stay-guest-datepicker .datepicker__inner {
    padding: 0.85rem 0.7rem 1rem;
    background: #fff;
  }

  .stay-guest-datepicker .datepicker__topbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.65rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .stay-guest-datepicker .datepicker__info {
    flex: 1 1 10rem;
    min-width: 0;
  }

  .stay-guest-datepicker .datepicker__info--help,
  .stay-guest-datepicker .datepicker__info-text {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .stay-guest-datepicker .datepicker__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-left: auto;
  }

  .stay-guest-datepicker .datepicker__month-name {
    font-size: 0.95rem;
  }

  .stay-guest-datepicker .datepicker__week-name {
    font-size: 0.65rem;
    padding: 0.35rem 0;
  }

  .stay-guest-datepicker .datepicker__month-day {
    padding: 0.55rem 0;
    font-size: 0.875rem;
    line-height: 1.2;
    min-height: 2.4rem;
  }

  .stay-guest-datepicker .datepicker__clear-button,
  .stay-guest-datepicker .datepicker__close-button {
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stay-book-form .datepicker {
    will-change: auto;
  }
}

.stay-book-form .datepicker__inner {
  padding: 16px 18px 18px;
}

.stay-book-form .datepicker__topbar {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.stay-book-form .datepicker__info--help,
.stay-book-form .datepicker__info-text {
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  color: var(--stay-ink-muted);
}

.stay-book-form .datepicker__info--error {
  color: #b42318;
  font-style: normal;
}

.stay-book-form .datepicker__month-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}

.stay-book-form .datepicker__week-name {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.stay-book-form .datepicker__month-day {
  border-radius: 999px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  border-color: transparent;
}

.stay-book-form .datepicker__month-day--valid:hover {
  background: rgba(26, 26, 26, 0.06);
  color: var(--stay-ink);
}

.stay-book-form .datepicker__month-day--invalid,
.stay-book-form .datepicker__month-day--disabled {
  color: #d1d5db !important;
  background: transparent !important;
  text-decoration: line-through;
  text-decoration-color: #d1d5db;
}

.stay-book-form .datepicker__month-day--disabled:after,
.stay-book-form .datepicker__month-day--no-checkin:before,
.stay-book-form .datepicker__month-day--no-checkout:before {
  content: none !important;
  display: none !important;
}

.stay-book-form .datepicker__month-day--no-checkin,
.stay-book-form .datepicker__month-day--no-checkout,
.stay-book-form .datepicker__month-day--day-of-week-disabled {
  background-color: transparent !important;
}

.stay-book-form .datepicker__month-day--selected {
  background: rgba(26, 26, 26, 0.08) !important;
  color: var(--stay-ink) !important;
  border-radius: 0;
}

.stay-book-form .datepicker__month-day--hovering {
  background: rgba(26, 26, 26, 0.08) !important;
  color: var(--stay-ink) !important;
  border-radius: 0;
}

.stay-book-form .datepicker__month-day--first-day-selected,
.stay-book-form .datepicker__month-day--last-day-selected {
  background: var(--stay-ink) !important;
  color: #fff !important;
  border-radius: 999px !important;
}

.stay-book-form .datepicker__month-day--today {
  background: transparent;
  color: var(--stay-ink);
  box-shadow: inset 0 0 0 1.5px rgba(26, 26, 26, 0.35);
  border-radius: 999px;
}

.stay-book-form .datepicker__month-day--today.datepicker__month-day--first-day-selected,
.stay-book-form .datepicker__month-day--today.datepicker__month-day--last-day-selected {
  box-shadow: none;
}

.stay-book-form .datepicker__tooltip {
  background: var(--stay-ink);
  color: #fff;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
}

.stay-book-form .datepicker__tooltip:after {
  border-top-color: var(--stay-ink);
}

.stay-book-form .datepicker__clear-button,
.stay-book-form .datepicker__close-button {
  background: transparent;
  color: var(--stay-ink);
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 14px;
  margin-top: 0;
}

.stay-book-form .datepicker__close-button {
  background: var(--stay-ink);
  color: #fff;
  border-color: var(--stay-ink);
}

.stay-book-form .datepicker__clear-button:hover {
  background: rgba(26, 26, 26, 0.05);
  color: var(--stay-ink);
}

.stay-book-form .datepicker__close-button:hover {
  background: #000;
  color: #fff;
}

.stay-book-form .datepicker__months:before {
  background: rgba(26, 26, 26, 0.08);
}

/* Month arrows — inline SVG (../icons/*.svg is blocked by root .htaccess) */
.stay-book-form .datepicker__month-button:after {
  background-size: 12px 12px !important;
  content: "" !important;
}

.stay-book-form .datepicker__month-button--prev:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M7.5 2.5L4 6l3.5 3.5' stroke='%231a1a1a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

.stay-book-form .datepicker__month-button--next:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M4.5 2.5L8 6l-3.5 3.5' stroke='%231a1a1a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

/* Also cover admin booking forms */
.datepicker__month-button--prev:after,
.datepicker__month-button--next:after {
  background-size: 12px 12px !important;
}

.datepicker__month-button--prev:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M7.5 2.5L4 6l3.5 3.5' stroke='%231a1a1a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

.datepicker__month-button--next:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M4.5 2.5L8 6l-3.5 3.5' stroke='%231a1a1a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

@media (min-width: 720px) {
  .stay-book-form .datepicker__month {
    width: 230px;
  }
}

.stay-form-errors {
  margin-bottom: 14px;
  padding: 12px;
  font-size: 13px;
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
}

.stay-form-errors p { margin: 0; }

.stay-form-footnote {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--stay-ink-muted);
  text-align: center;
}

.stay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.stay-btn--primary {
  background: var(--stay-ink);
  color: #fff;
  border-color: var(--stay-ink);
}

.stay-btn--primary:hover {
  background: #000;
  border-color: #000;
}

.stay-btn--ghost {
  background: #fff;
  color: var(--stay-ink);
  border-color: rgba(26, 26, 26, 0.14);
  border-radius: 12px;
}

.stay-btn--ghost:hover { background: var(--stay-cream); }

.stay-btn--block { width: 100%; }

.stay-confirm {
  max-width: 560px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  text-align: center;
}

.stay-confirm-badge {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--stay-gold);
  color: #fff;
  font-size: 24px;
  line-height: 56px;
}

.stay-confirm-card {
  margin: 28px 0;
  text-align: left;
  background: #fff;
  border: 1px solid var(--stay-border);
  border-radius: var(--stay-radius-lg);
  overflow: hidden;
}

.stay-confirm-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--stay-border);
  font-size: 14px;
}

.stay-confirm-row:last-child { border-bottom: none; }
.stay-confirm-row dt { margin: 0; font-weight: 600; color: var(--stay-ink-muted); }
.stay-confirm-row dd { margin: 0; }

.stay-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* About / Terms content pages */
.stay-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 24px 64px;
}

.stay-page-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.stay-page-title {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--stay-ink);
}

.stay-page-lead {
  margin: 12px 0 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--stay-ink-muted);
}

.stay-about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.stay-about-block {
  padding: 22px 22px 20px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 16px;
}

.stay-about-block--wide {
  margin-bottom: 8px;
}

.stay-about-heading {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--stay-ink);
}

.stay-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.stay-page--terms {
  max-width: 880px;
}

.stay-terms-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--stay-ink-muted);
}

.stay-terms-meta-sep {
  color: rgba(26, 26, 26, 0.28);
}

.stay-terms-toc {
  margin: 0 0 28px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 16px;
}

.stay-terms-toc-title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stay-ink-muted);
}

.stay-terms-toc-list {
  margin: 0;
  padding-left: 1.2rem;
  columns: 1;
  column-gap: 28px;
}

@media (min-width: 720px) {
  .stay-terms-toc-list {
    columns: 2;
  }
}

.stay-terms-toc-list li {
  break-inside: avoid;
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.4;
}

.stay-terms-toc-list a {
  color: var(--stay-ink-muted);
  text-decoration: none;
}

.stay-terms-toc-list a:hover {
  color: var(--stay-ink);
  text-decoration: underline;
}

.stay-terms-section {
  margin: 0 0 28px;
  padding-top: 4px;
  scroll-margin-top: 88px;
}

.stay-terms-heading {
  display: flex;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--stay-ink);
}

.stay-terms-num {
  flex: 0 0 auto;
  color: var(--stay-ink-muted);
}

.stay-terms-defs {
  margin: 0 0 14px;
}

.stay-terms-defs > div {
  margin: 0 0 12px;
}

.stay-terms-defs dt {
  font-weight: 700;
  color: var(--stay-ink);
}

.stay-terms-defs dd {
  margin: 4px 0 0;
  color: var(--stay-ink-muted);
  line-height: 1.65;
}

.stay-terms-ol {
  margin: 0 0 12px;
  padding-left: 1.25rem;
  color: var(--stay-ink-muted);
  line-height: 1.65;
}

.stay-terms-ol > li {
  margin-bottom: 10px;
}

.stay-terms-ol--alpha {
  list-style-type: lower-alpha;
  margin-top: 10px;
}

.stay-terms-table-wrap {
  overflow-x: auto;
  margin: 0 0 16px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 12px;
  background: #fff;
}

.stay-terms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.45;
}

.stay-terms-table th,
.stay-terms-table td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.stay-terms-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--stay-ink-muted);
  background: rgba(26, 26, 26, 0.03);
}

.stay-terms-table tr:last-child td {
  border-bottom: none;
}

.stay-terms-end {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--stay-ink-muted);
  text-align: center;
}

.stay-terms-list {
  margin: 0 0 16px;
  padding-left: 1.2rem;
  color: var(--stay-ink-muted);
  line-height: 1.65;
}

.stay-terms-list li {
  margin-bottom: 10px;
}

.stay-terms-list strong {
  color: var(--stay-ink);
  font-weight: 600;
}

.stay-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 16px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--stay-ink);
  background: var(--stay-cream);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 12px;
  cursor: pointer;
}

.stay-agree input {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--stay-ink);
}

.stay-agree a {
  color: var(--stay-gold-dark);
  font-weight: 600;
  text-underline-offset: 2px;
}

.stay-agree a:hover {
  color: var(--stay-ink);
}

@media (max-width: 720px) {
  .stay-about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .stay-grid { grid-template-columns: 1fr; }
  .stay-hero-actions {
    flex-direction: column;
  }
  .stay-how-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 24px 52px;
  }
  .stay-gallery-mosaic {
    height: min(58vw, 240px);
  }
  .stay-gallery-mosaic--3,
  .stay-gallery-mosaic--4,
  .stay-gallery-mosaic--5 {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .stay-gallery-mosaic--4 .stay-gallery-tile:nth-child(4),
  .stay-gallery-mosaic--5 .stay-gallery-tile:nth-child(4),
  .stay-gallery-mosaic--5 .stay-gallery-tile:nth-child(5) {
    display: none;
  }
  .stay-gallery-mosaic--4 .stay-gallery-tile:nth-child(3),
  .stay-gallery-mosaic--5 .stay-gallery-tile:nth-child(3) {
    grid-column: auto;
  }
  .stay-gallery-all { right: 32px; bottom: 10px; }
  .stay-lightbox-panel {
    width: calc(100vw - 24px);
    padding: 52px 0 24px;
  }
  .stay-lightbox-nav--prev { left: 8px; }
  .stay-lightbox-nav--next { right: 8px; }
}

@media (max-width: 720px) {
  .stay-search {
    flex-direction: column;
    flex-wrap: wrap;
    padding: 12px;
  }
  .stay-search-fields { flex-direction: column; }
  .stay-search-field {
    border-right: none;
    border-bottom: 1px solid var(--stay-border);
    padding: 12px 4px;
  }
  .stay-search-field:last-child { border-bottom: none; }
  .stay-search-btn {
    width: 100%;
    padding: 14px 22px;
    align-self: stretch;
  }
  .stay-listing-head { flex-direction: column; align-items: flex-start; }
  .stay-footer-inner { flex-direction: column; }
  .stay-footer-contact { text-align: left; max-width: none; }
  .stay-footer-links,
  .stay-footer-social { justify-content: flex-start; }
  .stay-detail-layout { grid-template-columns: 1fr; }
  .stay-book-panel { position: static; }
  .stay-book-dates { grid-template-columns: 1fr; }
  .stay-date-split { grid-template-columns: 1fr; }
  .stay-date-half + .stay-date-half { border-left: none; border-top: 1px solid rgba(26, 26, 26, 0.12); }
  .stay-nav { gap: 16px; }
  .stay-nav-link:not(.is-active) { display: none; }
  .stay-field-row { grid-template-columns: 1fr; }
  .stay-card-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}
