/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #fafaf9;
  --bg-2:      #f3f1ec;
  --surface:   #ffffff;
  --navy:      #1a2b3c;
  --navy-2:    #243648;
  --gold:      #c9a96e;
  --gold-2:    #b8924a;
  --ink:       #1a1a18;
  --ink-soft:  #3a3a36;
  --ink-mute:  #6b6b65;
  --line:      rgba(26,26,24,0.10);
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(26,43,60,0.07);
  --shadow-md: 0 8px 32px rgba(26,43,60,0.10);
  --shadow-lg: 0 20px 60px rgba(26,43,60,0.14);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --nav-h:     72px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; font-family: var(--serif); line-height: 1.1; letter-spacing: -0.02em; }
address { font-style: normal; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1.2rem; background: var(--navy); color: #fff;
  z-index: 9999; border-radius: 8px; font-weight: 500; font-size: .9rem;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1.75rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .01em;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,.35); }

.btn-hero-primary {
  background: var(--gold);
  color: #fff;
  padding: 1rem 2.2rem;
  font-size: 1rem;
}
.btn-hero-primary:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,169,110,.4); }

.btn-hero-ghost {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 1rem 2.2rem;
  font-size: 1rem;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

.btn-search {
  background: var(--navy);
  color: #fff;
  padding: .85rem 2rem;
  gap: .6rem;
}
.btn-search:hover { background: var(--navy-2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,43,60,.25); }

.btn-reserve {
  background: var(--navy);
  color: #fff;
  padding: .6rem 1.4rem;
  font-size: .85rem;
}
.btn-reserve:hover { background: var(--gold); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(201,169,110,.3); }

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  padding: .85rem 2.2rem;
}
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  width: 100%;
  justify-content: center;
  padding: .9rem;
  font-size: .95rem;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s var(--ease-out), box-shadow .3s var(--ease-out), padding .3s;
  padding-block: 1.25rem;
}
.nav.is-scrolled {
  background: rgba(250,250,249,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 4px 20px rgba(0,0,0,.06);
  padding-block: .75rem;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .95rem;
  font-family: var(--serif);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  transition: color .3s;
}
.nav.is-scrolled .nav-logo-text { color: var(--navy); }

.nav-links {
  display: none;
  align-items: center;
  gap: 1.3rem;
  margin-left: auto;
}
.nav-link {
  font-size: .83rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .25s;
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: #fff; }
.nav.is-scrolled .nav-link { color: var(--ink-soft); }
.nav.is-scrolled .nav-link:hover { color: var(--navy); }

.nav-actions {
  display: none;
  align-items: center;
  gap: .9rem;
  margin-left: 1rem;
}
.nav-phone {
  display: flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color .25s;
  white-space: nowrap;
}
.nav-phone:hover { color: #fff; }
.nav.is-scrolled .nav-phone { color: var(--ink-mute); }
.nav.is-scrolled .nav-phone:hover { color: var(--navy); }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s var(--ease-out);
}
.nav.is-scrolled .nav-hamburger span { background: var(--navy); }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1.5rem 1.25rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
  gap: .25rem;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile-link {
  display: block;
  padding: .75rem .5rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  transition: color .2s;
}
.nav-mobile-link:hover { color: var(--navy); }
.nav-mobile-cta {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,18,28,.65) 0%,
    rgba(10,18,28,.45) 50%,
    rgba(10,18,28,.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: var(--nav-h);
  padding-bottom: 6rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: .45rem 1rem;
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -.03em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.hero-sub {
  color: rgba(255,255,255,.8);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  line-height: 1.4;
}
.hero-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.02em;
}
.hero-stat-plus { color: var(--gold); font-weight: 700; font-family: var(--serif); }
.hero-stat-label { display: block; font-size: .78rem; }
.hero-stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.2);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.5);
  transition: color .25s;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll:hover { color: #fff; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================================
   7. Search section
   ============================================================= */
.search-section {
  position: relative;
  z-index: 10;
  margin-top: -5rem;
  padding-bottom: 5rem;
}
.search-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem 2rem;
}
.search-heading {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1.75rem;
}
.search-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.search-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-mute);
  margin-bottom: .4rem;
}
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1rem;
  background: var(--bg-2);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color .2s, background .2s;
}
.search-input-wrap:focus-within {
  border-color: var(--gold);
  background: var(--surface);
}
.search-icon { color: var(--gold); flex-shrink: 0; }
.search-input {
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--ink);
  width: 100%;
}
.search-input::placeholder { color: var(--ink-mute); }
.search-guests-wrap { justify-content: space-between; }
.search-guests {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
}
.guest-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  font-size: 1rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  font-weight: 500;
}
.guest-btn:hover { background: var(--line); }
.guest-btn--plus { background: var(--navy); color: #fff; border-color: var(--navy); }
.guest-btn--plus:hover { background: var(--gold); border-color: var(--gold); }
.guest-count {
  font-weight: 600;
  font-size: .95rem;
  min-width: 1.5rem;
  text-align: center;
  color: var(--ink);
}
.btn-search { width: 100%; justify-content: center; margin-top: .5rem; }

.platform-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
  font-size: .8rem;
  color: var(--ink-mute);
}
.platform-label { font-weight: 500; }
.platform-badge {
  padding: .25rem .75rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
}
.platform-badge--airbnb { background: #fff0ee; color: #e61e4d; }
.platform-badge--booking { background: #e8f0fd; color: #003580; }
.platform-note { color: var(--ink-mute); font-size: .75rem; }

/* =============================================================
   8. Section headers (shared)
   ============================================================= */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .9rem;
}
.section-sub {
  color: var(--ink-mute);
  font-size: 1.05rem;
  max-width: 520px;
  margin-inline: auto;
  font-weight: 300;
}

/* =============================================================
   9. Apartments section
   ============================================================= */
.apts-section {
  padding-block: 5rem;
  background: var(--bg);
}
.apts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.apts-more {
  text-align: center;
  margin-top: 3rem;
}

/* Apartment card */
.apt-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s var(--ease-out), transform .35s var(--ease-out);
}
.apt-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.apt-card-imgs {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.apt-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.apt-card:hover .apt-card-img { transform: scale(1.05); }

.apt-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--navy);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 999px;
  letter-spacing: .02em;
}
.apt-card-badge--teal { background: #0d7377; }

.apt-card-fav {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s var(--ease-out), background .2s;
  color: var(--ink);
}
.apt-card-fav:hover { transform: scale(1.12); background: #fff; }
.apt-card-fav.is-active svg { fill: #e61e4d; stroke: #e61e4d; }

.apt-card-body { padding: 1.35rem 1.4rem 1.5rem; }
.apt-card-rating {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .6rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}
.apt-card-reviews { color: var(--ink-mute); font-weight: 400; }
.apt-card-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.apt-card-desc {
  color: var(--ink-mute);
  font-size: .88rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.apt-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1rem;
  font-size: .82rem;
  color: var(--ink-soft);
}
.apt-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.amenity {
  background: var(--bg-2);
  color: var(--ink-soft);
  font-size: .75rem;
  font-weight: 500;
  padding: .25rem .7rem;
  border-radius: 999px;
}
.apt-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.apt-card-price { display: flex; align-items: baseline; gap: .2rem; }
.apt-price-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.apt-price-per { font-size: .82rem; color: var(--ink-mute); }

/* =============================================================
   10. Services section
   ============================================================= */
.services-section {
  padding-block: 5rem;
  background: var(--surface);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.service-card {
  padding: 1.75rem 1.5rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease-out);
  cursor: default;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,169,110,.12);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(201,169,110,.12), rgba(201,169,110,.06));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.service-desc {
  font-size: .85rem;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* =============================================================
   11. Gallery
   ============================================================= */
.gallery-section {
  padding-block: 5rem;
  background: var(--bg);
}
.gallery-grid {
  display: flex;
  gap: .5rem;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-main {
  flex: 1.4;
  overflow: hidden;
}
.gallery-grid-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .5rem;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.gallery-item:hover .gallery-img,
.gallery-main:hover .gallery-img {
  transform: scale(1.06);
}
.gallery-item--last .gallery-img {
  filter: brightness(.6);
}
.gallery-more-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  gap: .3rem;
  transition: background .2s;
}
.gallery-more-btn:hover { background: rgba(0,0,0,.15); }
.gallery-more-num { font-size: 1.5rem; font-family: var(--serif); }

/* Gallery tabs */
.gallery-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.gallery-tab {
  padding: .55rem 1.4rem;
  border-radius: 2rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(26,43,60,.5);
  background: transparent;
  border: 1.5px solid rgba(26,43,60,.2);
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
}
.gallery-tab.is-active,
.gallery-tab:hover {
  color: var(--navy);
  background: rgba(201,169,110,.12);
  border-color: var(--gold);
}
.gallery-panel { display: none; }
.gallery-panel.is-active { display: block; }
.gallery-grid-right--3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.gallery-grid-right--3 .gallery-item:last-child {
  grid-column: 1 / -1;
}

/* =============================================================
   12. Reviews
   ============================================================= */
.reviews-section {
  padding-block: 5rem;
  background: var(--surface);
}
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 1rem;
}
.reviews-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: .05em; }
.reviews-score {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}
.reviews-count { color: var(--ink-mute); font-size: .9rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.reviews-more {
  text-align: center;
  margin-top: 2.5rem;
}
.reviews-more-link {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--gold);
  transition: color .2s;
  cursor: pointer;
}
.reviews-more-link:hover { color: var(--gold); }

.review-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow .3s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .75rem;
}
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.review-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.review-meta {
  flex: 1;
  min-width: 0;
}
.review-name {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
}
.review-date { font-size: .78rem; color: var(--ink-mute); }
.review-platform {
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 999px;
  flex-shrink: 0;
}
.review-platform--airbnb { background: #fff0ee; color: #e61e4d; }
.review-platform--booking { background: #e8f0fd; color: #003580; }
.review-platform--direct { background: #e8fdf0; color: #057a3e; }
.review-stars-row { color: var(--gold); font-size: .95rem; letter-spacing: .1em; margin-bottom: .7rem; }
.review-text {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-style: italic;
}

/* =============================================================
   13. Contact / Map
   ============================================================= */
.contact-section {
  padding-block: 5rem;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}
.contact-card-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.contact-list { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-item div { display: flex; flex-direction: column; gap: .15rem; }
.contact-item strong { font-size: .88rem; font-weight: 600; color: var(--ink); }
.contact-item span, .contact-item a {
  font-size: .85rem;
  color: var(--ink-mute);
  transition: color .2s;
}
.contact-item a:hover { color: var(--gold); }
.contact-wa-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  color: #fff;
}
.contact-wa-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.contact-wa-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.25rem;
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 350px;
  box-shadow: var(--shadow-md);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  display: block;
}

/* =============================================================
   14. Footer
   ============================================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 4.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
}
.footer-brand .nav-logo-text { color: #fff; font-size: 1.15rem; }
.footer-brand p {
  font-size: .85rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.55);
}
.footer-social {
  display: flex;
  gap: .6rem;
}
.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .25s, color .25s, transform .25s;
}
.footer-social-link:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 1.1rem;
  font-family: var(--sans);
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col li a {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  transition: color .2s, padding-left .2s;
}
.footer-col li a:hover { color: #fff; padding-left: .25rem; }
.footer-col address {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  font-size: .87rem;
}
.footer-col address p { line-height: 1.4; }
.footer-col address a:hover { color: var(--gold); }
.footer-platforms { margin-top: 1.5rem; }
.footer-platforms p {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: .5rem;
}
.footer-platforms-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.footer-platforms-badges span {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  font-weight: 500;
  padding: .25rem .7rem;
  border-radius: 999px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  color: rgba(255,255,255,.3);
  transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* =============================================================
   15. WhatsApp float
   ============================================================= */
.wa-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.wa-tooltip {
  background: var(--surface);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 500;
  padding: .45rem .9rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s, transform .25s var(--ease-out);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.wa-btn {
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.wa-btn:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.5); }

/* =============================================================
   16. Reveal animations
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Safety — elements with data-split stay visible */
.reveal[data-split] { opacity: 1; transform: none; }

/* Stagger for grids */
.apts-grid .apt-card:nth-child(2) { transition-delay: .12s; }
.apts-grid .apt-card:nth-child(3) { transition-delay: .24s; }
.services-grid .service-card:nth-child(2) { transition-delay: .06s; }
.services-grid .service-card:nth-child(3) { transition-delay: .12s; }
.services-grid .service-card:nth-child(4) { transition-delay: .18s; }
.services-grid .service-card:nth-child(5) { transition-delay: .24s; }
.services-grid .service-card:nth-child(6) { transition-delay: .30s; }
.reviews-grid .review-card:nth-child(2) { transition-delay: .1s; }
.reviews-grid .review-card:nth-child(3) { transition-delay: .2s; }
.reviews-grid .review-card:nth-child(4) { transition-delay: .3s; }

/* =============================================================
   17. Responsive — tablet 720px+
   ============================================================= */
@media (min-width: 720px) {
  .nav-links, .nav-actions { display: flex; }
  .nav-hamburger { display: none; }
  .search-form { grid-template-columns: 1fr 1fr; }
  .btn-search { grid-column: 1 / -1; width: auto; justify-content: center; }
  .apts-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* =============================================================
   18. Responsive — desktop 960px+
   ============================================================= */
@media (min-width: 960px) {
  .search-form { grid-template-columns: 1.4fr 1fr 1fr 1fr auto; align-items: end; }
  .btn-search { grid-column: auto; width: auto; white-space: nowrap; }
  .apts-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 380px 1fr; }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; }
}

/* =============================================================
   19. Responsive — large 1280px+
   ============================================================= */
@media (min-width: 1280px) {
  :root { --nav-h: 80px; }
  .nav { padding-block: 1.5rem; }
  .nav.is-scrolled { padding-block: .9rem; }
  .search-card { padding: 3rem 2.5rem 2.5rem; }
  .gallery-grid { height: 540px; }
}

/* =============================================================
   20. Reduced motion (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-badge-dot { animation: none; }
  .hero-scroll { animation: none; }
  html { scroll-behavior: auto; }
}

/* =============================================================
   21. Policies (Formas de pago y condiciones)
   ============================================================= */
.policies-section { background: var(--surface); }

.policies-banner {
  position: relative;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.policies-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.38);
}
.policies-banner-title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1rem, 3.5vw, 1.6rem);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 1.5rem;
}
.policies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
  padding-block: 3rem;
}
@media (max-width: 599px) {
  .policies-grid { grid-template-columns: 1fr; }
}
@media (min-width: 768px) {
  .policies-grid { grid-template-columns: repeat(4, 1fr); }
  .policy-card:nth-child(1),
  .policy-card:nth-child(2) { grid-column: span 2; }
}
.policy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .9rem;
  padding: 1.5rem 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.policy-card:hover { box-shadow: var(--shadow-md); }
.policy-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.policy-icon svg { width: 28px; height: 28px; }
.policy-title {
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.policy-desc {
  font-size: .84rem;
  color: var(--ink-mute);
  line-height: 1.6;
}
.policy-card--accept .policy-icon { border-color: #2a9d5c; color: #2a9d5c; }
.policy-card--reject .policy-icon { border-color: #d64045; color: #d64045; }

/* =============================================================
   22. Lightbox
   ============================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4,6,12,.95);
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in .2s ease;
}
.lightbox[hidden] { display: none; }
.lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100vw - 120px);
  height: calc(100vh - 80px);
  cursor: zoom-out;
}
.lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: .5rem;
  box-shadow: 0 12px 60px rgba(0,0,0,.6);
  display: block;
  transition: opacity .18s ease;
  pointer-events: none;
}
.lb-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.18);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1;
}
.lb-close:hover { background: rgba(255,255,255,.32); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.18);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1;
  user-select: none;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.32); }
.lb-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-family: var(--font-body);
  background: rgba(0,0,0,.45);
  padding: .28rem .85rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.gallery-img { cursor: zoom-in; }

/* =============================================================
   22. Reviews modal
   ============================================================= */
.reviews-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,14,23,.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: modal-fade-in .2s ease;
}
.reviews-modal-overlay[hidden] { display: none; }
@keyframes modal-fade-in { from { opacity:0; } to { opacity:1; } }
.reviews-modal-box {
  background: var(--bg);
  border-radius: 1.5rem;
  width: 100%;
  max-width: 960px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  animation: modal-slide-in .25s ease;
}
@keyframes modal-slide-in {
  from { transform: translateY(22px); opacity:0; }
  to   { transform: translateY(0);    opacity:1; }
}
.reviews-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid rgba(26,43,60,.1);
  flex-shrink: 0;
}
.reviews-modal-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: .3rem;
  font-weight: 600;
}
.reviews-modal-score {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  color: var(--ink-mute);
}
.reviews-modal-score > span:first-child { color: var(--gold); font-size: 1.1rem; }
.reviews-modal-score > strong { color: var(--ink); font-size: 1rem; }
.reviews-modal-close {
  background: none;
  border: 1.5px solid rgba(26,43,60,.15);
  border-radius: .6rem;
  cursor: pointer;
  color: var(--ink-mute);
  padding: .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s, background .2s, border-color .2s;
  flex-shrink: 0;
}
.reviews-modal-close:hover { color: var(--navy); background: var(--surface); border-color: var(--navy); }
.reviews-modal-tabs {
  display: flex;
  gap: .5rem;
  padding: 1rem 2rem .9rem;
  border-bottom: 1px solid rgba(26,43,60,.1);
  flex-shrink: 0;
  overflow-x: auto;
}
.reviews-modal-tab {
  padding: .45rem 1.15rem;
  border-radius: 2rem;
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: 1.5px solid rgba(26,43,60,.15);
  background: transparent;
  color: var(--ink-mute);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.reviews-modal-tab.is-active,
.reviews-modal-tab:hover {
  color: var(--navy);
  background: rgba(201,169,110,.12);
  border-color: var(--gold);
}
.reviews-modal-body {
  overflow-y: auto;
  padding: 1.5rem 2rem 2rem;
  flex: 1;
}
.reviews-modal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 560px) { .reviews-modal-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 820px) { .reviews-modal-grid { grid-template-columns: 1fr 1fr 1fr; } }
.rmod-apt-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  padding: .12rem .5rem;
  border-radius: 999px;
  background: rgba(201,169,110,.15);
  color: #a07f4a;
  margin-left: .35rem;
  vertical-align: middle;
}
.rmod-stars-filled { color: var(--gold); }
.rmod-stars-empty  { color: #d8d4cc; }

/* =============================================================
   24. Availability Calendar
   ============================================================= */
.availability-section {
  padding: 5rem 0;
  background: var(--bg-2);
}
.avail-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin: 1.75rem 0 2rem;
}
.avail-tab {
  padding: .5rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s;
}
.avail-tab.is-active,
.avail-tab:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.avail-loading {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-mute);
  font-size: .9rem;
}
.avail-spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: avail-spin .7s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes avail-spin { to { transform: rotate(360deg); } }
.avail-error {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--ink-mute);
  font-size: .9rem;
}
.avail-error a {
  color: var(--gold);
  text-decoration: underline;
}
.avail-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.avail-nav-btn {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--navy);
  transition: all .2s;
  flex-shrink: 0;
}
.avail-nav-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.avail-months-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  flex: 1;
}
@media (max-width: 600px) {
  .avail-months-grid { grid-template-columns: 1fr; }
}
.avail-month {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.avail-month-title {
  text-align: center;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .85rem;
  text-transform: capitalize;
}
.avail-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.avail-day-name {
  text-align: center;
  font-size: .62rem;
  font-weight: 700;
  color: var(--ink-mute);
  text-transform: uppercase;
  padding: .2rem 0 .4rem;
  letter-spacing: .04em;
}
.avail-day {
  text-align: center;
  padding: .3rem .1rem;
  border-radius: .3rem;
  font-size: .78rem;
  line-height: 1.6;
}
.avail-day--empty  { }
.avail-day--past   { color: #c9c9c3; }
.avail-day--today  { background: var(--gold); color: #fff; font-weight: 700; border-radius: 50%; }
.avail-day--busy   { background: #fee2e2; color: #b91c1c; font-weight: 600; }
.avail-day--free   { color: var(--navy); }
.avail-legend {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.avail-legend-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  color: var(--ink-mute);
}
.avail-legend-item::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}
.avail-legend-item--free::before  { background: var(--surface); border: 1.5px solid var(--line); }
.avail-legend-item--busy::before  { background: #fee2e2; }
.avail-legend-item--today::before { background: var(--gold); border-radius: 50%; }

/* =============================================================
   25. Availability Checker Form
   ============================================================= */
.avail-checker {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}
.avail-checker-fields {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
}
.avail-checker-field {
  flex: 1;
  min-width: 140px;
}
.avail-checker-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: .45rem;
}
.avail-checker-input-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .65rem .9rem;
  background: var(--bg);
  transition: border-color .2s;
}
.avail-checker-input-wrap:focus-within {
  border-color: var(--gold);
}
.avail-checker-input-wrap svg {
  color: var(--gold);
  flex-shrink: 0;
}
.avail-checker-input {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--ink);
  width: 100%;
  outline: none;
}
.avail-result {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.avail-result--free {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #166534;
}
.avail-result--busy {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #991b1b;
}
.avail-result--error {
  background: #fffbeb;
  border: 1.5px solid #fcd34d;
  color: #92400e;
}
.avail-result-wa {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #25d366;
  color: #fff;
  padding: .45rem 1rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.avail-result-wa:hover { background: #1aad52; }
@media (max-width: 600px) {
  .avail-checker { padding: 1.25rem; }
  .avail-checker-fields { flex-direction: column; }
  .avail-checker-field { min-width: 0; width: 100%; }
}

.avail-checker-guests {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.avail-checker-guests span {
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  min-width: 1.2rem;
  text-align: center;
}
.avail-checker-field--guests .avail-checker-input-wrap {
  justify-content: space-between;
}
.avail-guests-max {
  display: block;
  font-size: .7rem;
  color: var(--ink-mute);
  margin-top: .3rem;
  text-align: center;
}

/* ── Availability checker — desktop alignment fix ── */
@media (min-width: 601px) {
  .avail-checker-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 160px auto;
    align-items: end;
    gap: 1rem;
    flex-wrap: nowrap;
  }
  .avail-checker-field,
  .avail-checker-field--guests {
    min-width: 0;
    flex: unset;
  }
  .avail-checker-field--guests .avail-checker-input-wrap {
    justify-content: space-between;
  }
  #avail-check-btn {
    white-space: nowrap;
    height: 48px;
    align-self: end;
  }
}

/* ── Guests field alignment fix ── */
.avail-guests-max {
  font-size: .68rem;
  color: var(--ink-mute);
  white-space: nowrap;
  margin-left: auto;
  padding-left: .4rem;
}
.avail-checker-input-wrap {
  height: 48px;
  box-sizing: border-box;
}

/* ── Guests max label inline ── */
.avail-guests-max {
  font-size: .68rem !important;
  font-weight: 400 !important;
  color: var(--ink-mute) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* ── Guests max below input — alignment compensator ── */
@media (min-width: 601px) {
  .avail-checker-field:not(.avail-checker-field--guests),
  #avail-check-btn {
    padding-bottom: 18px;
  }
  .avail-checker-field--guests {
    padding-bottom: 0;
  }
  .avail-guests-max {
    display: block;
    text-align: center;
    margin-top: .3rem;
    font-size: .7rem !important;
    color: var(--ink-mute) !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
  }
}

/* ── Checker single-line fix ── */
@media (min-width: 601px) {
  .avail-checker {
    padding-bottom: 2.5rem;
  }
  .avail-checker-fields {
    align-items: end !important;
  }
  .avail-checker-field:not(.avail-checker-field--guests),
  #avail-check-btn {
    padding-bottom: 0 !important;
  }
  .avail-checker-field--guests {
    position: relative;
    padding-bottom: 0 !important;
  }
  .avail-guests-max {
    position: absolute !important;
    bottom: -1.3rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: max-content !important;
    display: block !important;
    text-align: center !important;
    margin-top: 0 !important;
  }
}

/* =============================================================
   26. Availability Checker — clean rewrite
   ============================================================= */
.avail-checker {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 2.5rem 1.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}
.avail-checker-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin: 0 0 1.5rem;
}
.avail-checker-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 200px auto;
  gap: 1rem;
  align-items: end;
}
.avail-checker-field { min-width: 0; }
.avail-checker-label {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: .45rem;
}
.avail-guests-max {
  font-size: .68rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-mute);
}
.avail-checker-input-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .65rem .9rem;
  background: var(--bg);
  height: 48px;
  box-sizing: border-box;
  transition: border-color .2s;
}
.avail-checker-input-wrap:focus-within { border-color: var(--gold); }
.avail-checker-input-wrap svg { color: var(--gold); flex-shrink: 0; }
.avail-checker-input {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--ink);
  width: 100%;
  outline: none;
}
.avail-checker-guests {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
  justify-content: space-between;
}
.avail-checker-guests span {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  min-width: 1.2rem;
  text-align: center;
}
.avail-check-btn {
  height: 48px;
  white-space: nowrap;
  align-self: end;
}
.avail-checker-badges {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
  font-size: .82rem;
}
@media (max-width: 700px) {
  .avail-checker { padding: 1.5rem 1.25rem 1.25rem; }
  .avail-checker-fields {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .avail-checker-field--guests { grid-column: 1; }
  .avail-check-btn { grid-column: 2; }
}

/* ── Verificar btn text center fix ── */
.avail-check-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

/* ── Verificar btn force center ── */
#avail-check-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
}

/* ── Avail check button ── */
#avail-check-btn {
  justify-content: center !important;
  height: 48px !important;
  white-space: nowrap !important;
  width: 100% !important;
  gap: 0 !important;
}

/* ── Checker mobile fix ── */
@media (max-width: 700px) {
  .avail-checker {
    padding: 1.5rem 1.25rem 1.5rem;
  }
  .avail-checker-fields {
    display: flex !important;
    flex-direction: column !important;
    gap: .85rem !important;
  }
  .avail-checker-field,
  .avail-checker-field--guests,
  #avail-check-btn {
    width: 100% !important;
    min-width: 0 !important;
  }
  .avail-checker-field--guests .avail-checker-input-wrap {
    justify-content: space-between;
  }
  .avail-checker-guests {
    justify-content: center;
    gap: 1.25rem;
  }
  .avail-checker-guests span {
    font-size: 1.1rem;
    min-width: 1.8rem;
  }
  .guest-btn {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }
  #avail-check-btn {
    height: 52px !important;
    font-size: 1rem !important;
  }
}

/* =============================================================
   27. Pricing section
   ============================================================= */
.pricing-section {
  padding: 6rem 0;
  background: var(--bg-2);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid var(--line);
  transition: box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.pricing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pricing-card-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
}
.pricing-card-cap {
  font-size: .78rem;
  color: var(--ink-mute);
  background: var(--bg-2);
  padding: .3rem .7rem;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.pricing-tier {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  gap: 1rem;
}
.pricing-tier--highlight {
  border-color: rgba(26,43,60,.25);
  background: rgba(26,43,60,.04);
}
.pricing-tier--best {
  border-color: rgba(201,169,110,.45);
  background: rgba(201,169,110,.07);
}
.pricing-tier-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--navy);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .2rem .5rem;
  border-radius: 50px;
}
.pricing-tier-badge--gold {
  background: var(--gold-2);
}
.pricing-tier-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
  min-width: 80px;
}
.pricing-tier-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
  flex: 1;
  text-align: center;
}
.pricing-tier--best .pricing-tier-price {
  color: var(--gold-2);
}
.pricing-tier-note {
  font-size: .73rem;
  color: var(--ink-mute);
  text-align: right;
  min-width: 110px;
  line-height: 1.3;
}
.pricing-card-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.pricing-note {
  text-align: center;
  font-size: .8rem;
  color: var(--ink-mute);
  margin-top: 2rem;
  letter-spacing: .01em;
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-tier { flex-wrap: wrap; gap: .4rem; }
  .pricing-tier-price { text-align: left; }
  .pricing-tier-note { min-width: auto; text-align: left; }
}

/* =============================================================
   28a. Corporate section
   ============================================================= */
.corporate-section {
  padding: 6rem 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.corporate-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,169,110,.12) 0%, transparent 60%);
  pointer-events: none;
}
.corporate-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.section-eyebrow--light {
  color: var(--gold);
  border-color: rgba(201,169,110,.35);
  background: rgba(201,169,110,.1);
}
.corporate-title {
  color: #fff;
}
.corporate-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-top: .75rem;
  margin-bottom: 2rem;
}
.corporate-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.corporate-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.corporate-list-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201,169,110,.15);
  border: 1px solid rgba(201,169,110,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.corporate-list-item strong {
  display: block;
  font-weight: 600;
  color: #fff;
  font-size: .95rem;
  margin-bottom: .2rem;
}
.corporate-list-item span {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}
.corporate-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 2.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.corporate-cta-btn:hover {
  background: #1ebe5b;
  transform: scale(1.02);
}
/* aside cards */
.corporate-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.corporate-badge-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(6px);
}
.corporate-badge-icon {
  font-size: 2.2rem;
  margin-bottom: .75rem;
  line-height: 1;
}
.corporate-badge-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .5rem;
}
.corporate-badge-text {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.corporate-badge-text strong {
  color: var(--gold);
}
.corporate-badge-divider {
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 1rem 0;
}
.corporate-badge-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.corporate-badge-card--industries {
  background: rgba(201,169,110,.1);
  border-color: rgba(201,169,110,.25);
}
.corporate-industries-title {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.corporate-industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.corporate-industries-grid span {
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: .3rem .7rem;
  border-radius: 50px;
}
@media (max-width: 900px) {
  .corporate-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .corporate-aside {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .corporate-badge-card { flex: 1; min-width: 260px; }
}
@media (max-width: 600px) {
  .corporate-aside { flex-direction: column; }
  .corporate-badge-card { min-width: 0; }
}

/* =============================================================
   28b. Apartment card price alt line
   ============================================================= */
.apt-card-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.apt-price-alt {
  font-size: .72rem;
  color: var(--ink-mute);
  letter-spacing: .01em;
  line-height: 1.3;
}

/* =============================================================
   28. Sticky mobile CTA bar
   ============================================================= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 24px rgba(26,43,60,0.10);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(0.16,1,0.3,1);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
}
.mobile-cta-bar.is-visible {
  transform: translateY(0);
}
.mobile-cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-cta-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.mobile-cta-from {
  font-size: .72rem;
  color: var(--ink-mute);
  font-family: var(--sans);
}
.mobile-cta-num {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.02em;
}
.mobile-cta-per {
  font-size: .72rem;
  color: var(--ink-mute);
}
.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.mobile-cta-btn:hover {
  background: #1ebe5b;
  transform: scale(1.02);
}
@media (max-width: 767px) {
  .mobile-cta-bar { display: block; }
  /* add bottom padding to footer so bar doesn't cover last content */
  .footer { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
}
