/* ═══════════════════════════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════════════════════════ */
:root {
  --primary:    #1A3240;
  --secondary:  #C19A6B;
  --accent:     #E8D5B7;
  --bg-light:   #F9F7F4;
  --bg-dark:    #111C23;
  --text:       #1C1C1C;
  --text-mid:   #5C6B75;
  --white:      #FFFFFF;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', Arial, sans-serif;
  --font-script: 'Dancing Script', cursive;

  --radius:   4px;
  --radius-lg: 8px;
  --shadow:   0 2px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);

  --nav-h: 72px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 3rem;
  gap: 2rem;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(26, 50, 64, 0.97);
  box-shadow: var(--shadow);
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.brand-main {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
}
.brand-sub {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.btn-nav-book {
  flex-shrink: 0;
  padding: 0.55rem 1.5rem;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-nav-book:hover { background: #a8844f; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,28,35,.45) 0%,
    rgba(17,28,35,.20) 50%,
    rgba(17,28,35,.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  padding-top: var(--nav-h);
}
.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  margin-bottom: 0.5rem;
}
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--accent);
  text-shadow: 0 2px 15px rgba(0,0,0,.3);
  margin-bottom: 1rem;
}
.hero-tagline {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
}
.btn-hero {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.btn-hero:hover {
  background: var(--white);
  color: var(--primary);
}
.hero-nav {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.hero-prev, .hero-next {
  color: var(--white);
  font-size: 1.4rem;
  padding: 0.3rem 0.6rem;
  transition: color var(--transition);
  opacity: .7;
}
.hero-prev:hover, .hero-next:hover { opacity: 1; }
.hero-dots { display: flex; gap: 0.6rem; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.7);
  background: transparent;
  transition: background var(--transition), border-color var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--white);
  border-color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
   LOCATION BAR
═══════════════════════════════════════════════════════════════ */
.loc-bar {
  background: var(--primary);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.loc-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
  flex: 1;
  min-width: 160px;
  max-width: 240px;
}
.loc-item:last-child { border-right: none; }
.loc-icon {
  width: 22px;
  height: 22px;
  color: var(--secondary);
  flex-shrink: 0;
}
.loc-item div {
  display: flex;
  flex-direction: column;
}
.loc-item strong {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.loc-item span {
  font-size: 0.72rem;
  color: rgba(255,255,255,.6);
  margin-top: 0.1rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS COMMON
═══════════════════════════════════════════════════════════════ */
.section {
  padding: 6rem 3rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 0.8rem;
}
.section-title.left { text-align: left; }
.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-header.light .section-title,
.section-header.light .section-subtitle { color: var(--white); }
.section-header.light .section-eyebrow { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════
   APARTMENTS SECTION
═══════════════════════════════════════════════════════════════ */
.apartments-section {
  background: var(--bg-light);
  padding-top: 5rem;
  padding-bottom: 6rem;
}
.apts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ─── Card ─── */
.apt-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.apt-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.apt-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ─── Badge ─── */
.apt-badge, .apt-badge-alt {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 5;
  padding: 0.35rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  color: var(--white);
}
.apt-badge { background: var(--secondary); }
.apt-badge-alt { background: var(--primary); }

/* ─── Gallery ─── */
.apt-gallery { position: relative; }
.featured .apt-gallery {
  display: flex;
  flex-direction: column;
  min-height: 500px;
}
.apt-main-img {
  position: relative;
  overflow: hidden;
  /* height set per card type below */
}

/* Non-featured (907, 823): fixed height — always the same size regardless of photo */
.apt-card:not(.featured) .apt-main-img {
  height: 300px;
}

/* Featured (610): fills the left gallery column */
.featured .apt-main-img {
  flex: 1;
  min-height: 350px;
  max-height: 520px;
}

.apt-main-img img {
  /* absolute fill — size never changes when src changes */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.apt-card:hover .apt-main-img img { transform: scale(1.04); }
.gallery-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.85);
  color: var(--primary);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  transition: background var(--transition);
  z-index: 3;
  opacity: 0;
}
.apt-card:hover .gallery-btn { opacity: 1; }
.gallery-btn:hover { background: var(--white); }
.gallery-prev { left: 0.7rem; }
.gallery-next { right: 0.7rem; }
.apt-photo-count {
  position: absolute;
  bottom: 0.7rem; right: 0.7rem;
  background: rgba(0,0,0,.55);
  color: var(--white);
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
}
.apt-thumbs {
  display: flex;
  gap: 3px;
  height: 55px;
  overflow: hidden;
}
.apt-thumbs img, .apt-thumbs .thumb {
  flex: 1;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: opacity var(--transition);
  display: block;
}
.apt-thumbs img:hover { opacity: .8; }
.apt-thumbs img.active { box-shadow: inset 0 0 0 2px var(--secondary); }
.more-photos {
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.more-photos:hover { background: var(--secondary); }

/* ─── Info ─── */
.apt-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.apt-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.apt-header-row > div:first-child {
  flex: 1;
  min-width: 0;
}

/* Non-featured cards: stack title/type on top, score as horizontal inline row below */
.apt-card:not(.featured) .apt-header-row {
  flex-direction: column;
  gap: 0.3rem;
}
.apt-card:not(.featured) .apt-score {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  text-align: left;
}
.apt-card:not(.featured) .score-num {
  font-size: 1.4rem;
}
.apt-card:not(.featured) .score-label {
  display: inline;
}
.apt-card:not(.featured) .score-count {
  display: inline;
  margin-left: 0.1rem;
}
.apt-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
}
.apt-type {
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}
.apt-score {
  text-align: right;
  flex-shrink: 0;
}
.score-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}
.score-label {
  display: block;
  font-size: 0.65rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.score-count {
  display: block;
  font-size: 0.62rem;
  color: var(--text-mid);
}
.apt-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.spec {
  font-size: 0.72rem;
  background: var(--bg-light);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  color: var(--text-mid);
  font-weight: 500;
}
.apt-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-mid);
}
/* amenity-list: replaces apt-amenities, uses SVG checkmark via pseudo-element */
.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
  font-size: 0.78rem;
  color: var(--text);
}
.amenity-list li {
  position: relative;
  padding-left: 1.35rem;
  line-height: 1.4;
}
.amenity-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C19A6B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
/* keep backward compat if old class still present */
.apt-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text);
}
.apt-amenities li::before { content: ''; }
.apt-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-mid);
  border-top: 1px solid #eee;
  padding-top: 0.8rem;
}
.apt-footer {
  display: flex;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.btn-gallery, .btn-book-apt {
  flex: 1;
  padding: 0.7rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-gallery {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-gallery:hover { background: var(--primary); color: var(--white); }
.btn-book-apt {
  background: var(--secondary);
  color: var(--white);
  border: 1.5px solid var(--secondary);
}
.btn-book-apt:hover { background: #a8844f; border-color: #a8844f; }

/* ═══════════════════════════════════════════════════════════════
   REVIEWS SECTION
═══════════════════════════════════════════════════════════════ */
.reviews-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 3rem;
}
.reviews-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.reviews-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,28,35,.82);
}
.reviews-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.scores-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.score-badge {
  text-align: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.sb-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.sb-name {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 500;
}
.sb-label {
  font-size: 0.68rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.sb-source {
  font-size: 0.62rem;
  color: rgba(255,255,255,.4);
}

/* ─── Reviews carousel ─── */
.reviews-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rev-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.rev-arrow:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}
.reviews-viewport {
  flex: 1;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.review-card {
  min-width: 300px;
  flex: 0 0 300px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rev-stars {
  color: var(--secondary);
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.rev-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  flex: 1;
}
.rev-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.rev-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.rev-author div { display: flex; flex-direction: column; }
.rev-author b { font-size: 0.82rem; color: var(--white); }
.rev-author small { font-size: 0.68rem; color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════════════
   LOCATION SECTION
═══════════════════════════════════════════════════════════════ */
.location-section {
  background: var(--white);
  padding: 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.location-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.location-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.location-address svg { flex-shrink: 0; color: var(--secondary); }
.nearby-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nearby-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0ede9;
  font-size: 0.85rem;
}
.nearby-dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  margin-right: 0.2rem;
}
.nearby-name { flex: 1; color: var(--text); }
.nearby-dist {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--secondary);
}
.location-map {
  height: 100%;
  min-height: 400px;
}
.location-map iframe { height: 100%; min-height: 400px; }

/* ═══════════════════════════════════════════════════════════════
   BOOKING SECTION
═══════════════════════════════════════════════════════════════ */
.booking-section {
  background: var(--bg-light);
}
.booking-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.booking-options {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.booking-card {
  flex: 1;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.booking-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.booking-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary);
}
.booking-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.booking-divider {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
}
.btn-whatsapp, .btn-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  width: 100%;
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ebd5b; }
.btn-email {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn-email:hover { background: var(--primary); color: var(--white); }
.booking-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
}
.btn-booking-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.85rem 1.2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background var(--transition);
}
.btn-booking-link small {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: .7;
  margin-top: 0.15rem;
}
.btn-booking-link:hover { background: var(--secondary); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.7;
}
.footer-address {
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
  margin-top: 0.5rem;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li, .footer-col a, .footer-col button {
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  text-align: left;
}
.footer-col a:hover,
.footer-col button:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 3rem;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════════════════════════════
   MODALS
═══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%);
  z-index: 201;
  width: min(95vw, 1100px);
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  color: var(--white);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(0,0,0,.8); }
.modal-body {
  display: grid;
  grid-template-columns: 55% 45%;
  overflow-y: auto;
  max-height: 90vh;
}
.modal-gallery {
  background: #000;
  display: flex;
  flex-direction: column;
}
.modal-main-img {
  position: relative;
  flex: 1;
  min-height: 380px;
  overflow: hidden;
}
.modal-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.modal-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.2);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.modal-arrow:hover { background: rgba(255,255,255,.4); }
.modal-prev { left: 1rem; }
.modal-next { right: 1rem; }
.modal-counter {
  position: absolute;
  bottom: 0.8rem; right: 0.8rem;
  background: rgba(0,0,0,.55);
  color: var(--white);
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
}
.modal-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 3px;
  overflow-x: auto;
  background: #111;
  padding: 4px;
  max-height: 90px;
}
.modal-thumbs::-webkit-scrollbar { height: 4px; }
.modal-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); }
.mthumb {
  flex: 0 0 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  opacity: .6;
  transition: opacity var(--transition);
  border-radius: 2px;
}
.mthumb:hover, .mthumb.active { opacity: 1; outline: 2px solid var(--secondary); }
.modal-info {
  padding: 2.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.modal-info h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary);
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.modal-score {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--secondary);
  color: var(--white);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.modal-type {
  font-size: 0.78rem;
  color: var(--text-mid);
}
.modal-info > p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-mid);
}
.modal-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.modal-specs-grid div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.modal-specs-grid strong {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  font-weight: 600;
}
.modal-specs-grid span {
  font-size: 0.8rem;
  color: var(--text);
}
.modal-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.modal-amenities-grid span {
  font-size: 0.75rem;
  color: var(--text);
}
/* New modal amenity list with checkmarks */
.modal-amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.2rem;
  font-size: 0.78rem;
  color: var(--text);
}
.modal-amenity-list li {
  position: relative;
  padding-left: 1.3rem;
  line-height: 1.4;
}
.modal-amenity-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.2rem;
  width: 13px; height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C19A6B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.btn-book-modal {
  margin-top: auto;
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border-radius: var(--radius);
  box-sizing: border-box;
  transition: background var(--transition);
}
.btn-book-modal:hover { background: #a8844f; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .apt-card.featured {
    grid-template-columns: 1fr;
    grid-column: auto;
  }
  .featured .apt-gallery { min-height: 280px; }
  .featured .apt-main-img { height: 280px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 350px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .navbar { padding: 0 1.5rem; }
  .nav-links, .btn-nav-book { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--primary);
    padding: 2rem;
    gap: 1.5rem;
  }
  .nav-links.open + .btn-nav-book { display: block; }

  .section { padding: 4rem 1.5rem; }
  .apts-grid { grid-template-columns: 1fr; }
  .reviews-section { padding: 4rem 1.5rem; }
  .scores-row { gap: 1rem; }
  .review-card { min-width: 260px; flex: 0 0 260px; }
  .booking-options { flex-direction: column; }
  .booking-divider { transform: rotate(90deg); }
  .footer-top { grid-template-columns: 1fr; padding: 3rem 1.5rem 2rem; gap: 2rem; }
  .footer-bottom { padding: 1.2rem 1.5rem; }

  .modal-body { grid-template-columns: 1fr; }
  .modal-gallery { min-height: 250px; }
  .modal-main-img { min-height: 250px; }

  .loc-bar { flex-direction: column; }
  .loc-item { max-width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .loc-item:last-child { border-bottom: none; }

  .location-text { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .hero-script { font-size: 1.5rem; }
  .apt-amenities { grid-template-columns: 1fr; }
  .modal-specs-grid { grid-template-columns: 1fr; }
  .modal-amenities-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   NAV DROPDOWN
═══════════════════════════════════════════════════════════════ */
.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 270px;
  background: rgba(26, 50, 64, 0.97);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(193,154,107,.2);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  transform: translateX(-50%) translateY(6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background var(--transition);
  gap: 0.15rem;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: rgba(193,154,107,.12); }
.dropdown-item strong {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
}
.dropdown-item span {
  font-size: 0.7rem;
  color: rgba(255,255,255,.55);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delay for apartment cards */
#apt-610.animate-on-scroll { transition-delay: 0s; }
#apt-907.animate-on-scroll { transition-delay: 0.15s; }
#apt-823.animate-on-scroll { transition-delay: 0.3s; }

/* Hero parallax */
.hero-slides { will-change: transform; }

/* Mobile dropdown */
@media (max-width: 768px) {
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,.06);
    box-shadow: none;
    backdrop-filter: none;
    transition: max-height 0.3s ease, visibility 0.3s;
  }
  .has-dropdown.open .nav-dropdown {
    visibility: visible;
    max-height: 300px;
    padding: 0.3rem 0;
    transform: none;
  }
  .dropdown-item strong { font-size: 0.78rem; }
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════════ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   BOOKING OVERLAY
═══════════════════════════════════════════════════════════════ */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  overflow-y: auto;
}
.booking-overlay.active {
  opacity: 1;
  visibility: visible;
}
.booking-screen {
  min-height: 100vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.booking-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}
.booking-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.booking-back:hover { color: var(--secondary); background: var(--bg-light); }
.booking-apt-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.booking-apt-thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  object-fit: cover;
}
.booking-apt-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0;
}
.booking-apt-type {
  font-size: 0.75rem;
  color: var(--text-mid);
  margin: 0;
}

/* Apartment selector dropdown */
.apt-selector {
  margin-left: auto;
  padding: 0.5rem 2rem 0.5rem 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  background: var(--bg-light);
  border: 1px solid #ddd;
  border-radius: var(--radius);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231A3240' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  transition: all var(--transition);
  white-space: nowrap;
}
.apt-selector:hover { border-color: var(--secondary); }
.apt-selector:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(193,154,107,0.15); }

/* Content: 2-col grid */
.booking-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  padding: 2.5rem 0 4rem;
  align-items: start;
}
.booking-step-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 0 0.3rem;
}
.booking-step-hint {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin: 0 0 0.3rem;
  transition: color 0.3s;
}
.booking-step-hint.hint-error {
  color: #c0392b;
  font-weight: 600;
}
.booking-ical-status {
  font-size: 0.72rem;
  color: var(--secondary);
  margin: 0 0 1.2rem;
  min-height: 1em;
}

/* Date display row */
.booking-dates-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.booking-date-box {
  flex: 1;
  background: var(--bg-light);
  border: 1.5px solid #e0dbd4;
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  text-align: center;
}
.booking-date-box .date-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mid);
}
.booking-date-box .date-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary);
  margin-top: 0.2rem;
}
.booking-nights-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1.5px solid #e0dbd4;
  flex-shrink: 0;
  opacity: 0.4;
  transition: all var(--transition);
}
.booking-nights-badge.active {
  background: var(--secondary);
  border-color: var(--secondary);
  opacity: 1;
  color: var(--white);
}
.booking-nights-badge span {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}
.booking-nights-badge small {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Calendar */
.calendar-container {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}
.cal-month-label {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary);
}
.cal-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: none;
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.cal-nav-btn:hover { border-color: var(--secondary); color: var(--secondary); }
.cal-nav-btn:disabled { opacity: 0.3; pointer-events: none; }
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

/* Day cells */
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.cal-day:hover:not(.cal-day--empty):not(.cal-day--past):not(.cal-day--booked) {
  background: var(--accent);
  color: var(--primary);
}
.cal-day--empty { visibility: hidden; cursor: default; }
.cal-day--past { color: #ccc; cursor: default; }
.cal-day--booked {
  color: #ccc;
  text-decoration: line-through;
  cursor: not-allowed;
}
.cal-day--today {
  font-weight: 700;
  box-shadow: inset 0 0 0 1.5px var(--secondary);
}
.cal-day--checkin {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: var(--radius) 4px 4px var(--radius);
}
.cal-day--checkout {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 4px var(--radius) var(--radius) 4px;
}
.cal-day--in-range {
  background: var(--accent);
  color: var(--primary);
  border-radius: 0;
}
.cal-day--hover-range {
  background: rgba(232,213,183, 0.5);
  border-radius: 0;
}

/* Summary sidebar */
.booking-summary {
  position: relative;
}
.summary-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.8rem;
  position: sticky;
  top: 2rem;
}
.summary-apt-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.summary-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary);
  margin: 0 0 0.2rem;
}
.summary-type {
  font-size: 0.75rem;
  color: var(--text-mid);
  margin: 0 0 1rem;
}
.summary-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.8rem 0;
  border-top: 1px solid #e0dbd4;
  border-bottom: 1px solid #e0dbd4;
  margin-bottom: 1rem;
}
.summary-specs strong {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  display: block;
}
.summary-specs span {
  font-size: 0.78rem;
  color: var(--text);
}
.summary-dates-detail {
  margin-bottom: 0.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 0.4rem 0;
  color: var(--text);
}
.summary-row.nights-row {
  font-weight: 600;
  border-top: 1px solid #e0dbd4;
  padding-top: 0.8rem;
  margin-top: 0.4rem;
}

/* Pagar button */
.btn-pagar {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 1.5rem;
}
.btn-pagar:hover:not(:disabled) { background: #a8844f; }
.btn-pagar:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagar-hint {
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
}
.pagar-cancelacion {
  text-align: center;
  font-size: 0.7rem;
  color: #2e7d32;
  margin-top: 0.3rem;
  font-weight: 500;
}

/* Payment confirmation */
.pago-confirmado {
  display: none;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 1.5rem;
  background: #f0faf0;
  border: 1.5px solid #4caf50;
  border-radius: 12px;
}
.pago-confirmado.active {
  display: block;
  animation: pagoFadeIn 0.4s ease;
}
@keyframes pagoFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.pago-confirmado-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.8rem;
  background: #4caf50;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
}
.pago-confirmado-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #2e7d32;
  margin: 0 0 0.4rem;
  font-weight: 600;
}
.pago-confirmado-detail {
  font-size: 0.78rem;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}

/* Hint success */
.booking-step-hint.hint-success {
  color: #2e7d32;
  font-weight: 600;
}

/* Booking overlay responsive */
@media (max-width: 768px) {
  .booking-screen { padding: 0 1rem; }
  .booking-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .booking-header { flex-wrap: wrap; gap: 1rem; }
  .summary-card { position: static; }
  .cal-day { font-size: 0.78rem; }
  .booking-step-title { font-size: 1.3rem; }
  .booking-dates-row { gap: 0.5rem; }
  .booking-date-box { padding: 0.6rem 0.5rem; }
  .booking-date-box .date-value { font-size: 1rem; }
  .booking-nights-badge { width: 48px; height: 48px; }
  .booking-nights-badge span { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .cal-day { font-size: 0.72rem; }
  .calendar-container { padding: 1rem; }
}
