/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === CSS VARIABLES === */
:root {
  --blue:        #0369a1;
  --blue-light:  #0ea5e9;
  --blue-dark:   #075985;
  --blue-deep:   #0c4a6e;
  --gold:        #d97706;
  --gold-dark:   #b45309;
  --green:       #15803d;
  --sand:        #fef9ee;
  --dark:        #0f172a;
  --gray:        #64748b;
  --light:       #f8fafc;
  --white:       #ffffff;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.14);
  --max-width:   1200px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* === LAYOUT === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* === WEATHER TICKER === */
:root {
  --nav-h: 57px;
}
#weather-bar {
  position: absolute;
  top: calc(var(--nav-h) + 20px);
  left: 0;
  right: 0;
  z-index: 2;
  height: 56px;
  background: transparent;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.wt-scroll {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wt-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  white-space: nowrap;
  gap: 0.25rem;
}
.wt-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0 0.7rem;
}
.wt-day {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.wt-weather {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.wt-icon { font-size: 1.05rem; line-height: 1; }
.wt-temp { font-size: 0.92rem; color: rgba(255,255,255,0.92); }
.wt-lo { opacity: 0.5; }
.wt-sep { color: rgba(255,255,255,0.15); padding: 0 0.1rem; font-size: 0.6rem; align-self: center; }
.wt-placeholder {
  padding: 0 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* Offset sections so fixed nav+weather bar don't cover headings on scroll */
section[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 0.875rem 1.5rem;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--blue-dark);
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  list-style: none;
}
.nav-links li { list-style: none; }
.nav-links li::marker { display: none; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-cta {
  background: var(--blue);
  color: white;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); color: white; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.25s;
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/web/photo-4239_singular_display_fullPicture.jpeg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.62);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 2rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.95);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.hero h1 {
  color: white;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}
.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(217,119,6,0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(180,83,9,0.5);
  color: white;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === STATS BAR === */
.stats-bar {
  background: var(--blue-deep);
  padding: 1.5rem 1.5rem;
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* === LIVE WEBCAM STRIP === */
.livecam-strip {
  background: #07253a;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.livecam-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.livecam-link {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  width: 100%;
}
.livecam-link video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.livecam-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  pointer-events: none;
}
.livecam-placeholder-icon { font-size: 1.4rem; }
.livecam-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(220,38,38,0.9);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  letter-spacing: 0.08em;
  pointer-events: none;
}
.livecam-info { text-align: center; }
.livecam-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.livecam-sub {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-top: 0.1rem;
}
.livecam-more {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
}
.livecam-more:hover { text-decoration: underline; }

/* === SECTION SHARED === */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--sand); }
.section-light { background: var(--light); }
.section-dark { background: var(--dark); }
.section-tag {
  display: inline-block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.section-center { text-align: center; }
.section-lead {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 680px;
  margin: 1rem auto 0;
}

/* === VILLA SECTION === */
.villa-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.villa-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-deep);
  color: white;
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.villa-text h2 { margin-bottom: 0.75rem; }
.villa-text > p { color: var(--gray); line-height: 1.85; margin-bottom: 1.5rem; }
.villa-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.villa-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #334155;
}
.check {
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
}
.villa-image-wrap { position: relative; background: #dde3ea; border-radius: var(--radius); }
.villa-image-wrap img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.price-tag {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: white;
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 130px;
}
.price-amount {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1;
}
.price-per { font-size: 0.72rem; color: var(--gray); margin-top: 0.2rem; }

/* === VILLA PHOTO GRID === */
.villa-photos {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
}
.villa-photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 0.625rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: #dde3ea;
}
.villa-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.villa-photo-grid img:first-child { grid-row: span 2; }
.villa-photo-grid img:hover { transform: scale(1.04); }
.villa-photo-credit {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 0.5rem;
  text-align: right;
}
.villa-photo-credit a { color: var(--gray); text-decoration: underline; }
@media (max-width: 640px) {
  .villa-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .villa-photo-grid img { height: 150px; }
  .villa-photo-grid img:first-child { grid-row: span 1; }
}
@media (max-width: 400px) {
  .villa-photo-grid { grid-template-columns: 1fr; }
  .villa-photo-grid img { height: 200px; }
}

/* === BEACH SECTIONS === */
.beach-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.beach-text h2 { margin-bottom: 0.75rem; }
.beach-text p { color: var(--gray); line-height: 1.85; margin-bottom: 1rem; }
.beach-quote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--blue-light);
  background: rgba(14,165,233,0.06);
  border-radius: 0 8px 8px 0;
}
.beach-quote p {
  font-style: italic;
  color: #475569;
  margin-bottom: 0.25rem;
}
.beach-quote cite { font-size: 0.8rem; color: var(--gray); font-style: normal; font-weight: 600; }
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0.5rem;
  box-shadow: 0 4px 14px rgba(180,83,9,0.32);
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.award-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180,83,9,0.45);
  color: white;
}
.beach-image { background: #dde3ea; border-radius: var(--radius); }
.beach-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* === AMENITIES === */
.amenities-header { text-align: center; margin-bottom: 3rem; }
.amenities-header h2 { margin-bottom: 0.5rem; }
.amenities-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
}
.amenity-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.amenity-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.amenity-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }
.amenity-name { font-weight: 600; font-size: 0.92rem; color: var(--dark); }
.amenity-desc { font-size: 0.78rem; color: var(--gray); margin-top: 0.2rem; line-height: 1.5; }

/* === DISTANCES === */
.distances-header { text-align: center; margin-bottom: 3rem; }
.distances-header h2 { margin-bottom: 0.5rem; }
.distances-grid {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.dist-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem;
  background: var(--light);
  border-radius: 8px;
  border-left: 3px solid var(--blue-light);
}
.dist-name { font-size: 0.9rem; font-weight: 500; color: #334155; }
.dist-value { font-weight: 700; color: var(--blue); font-size: 0.9rem; white-space: nowrap; }

/* === DINING & SHOPS === */
.dining-header { text-align: center; margin-bottom: 3rem; }
.dining-header h2 { margin-bottom: 0.5rem; }
.dining-sub-label {
  max-width: 900px;
  margin: 0 auto 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-align: center;
}
.dining-grid + .dining-sub-label { margin-top: 2.5rem; }
.dining-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  justify-content: center;
}
.dining-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: var(--light);
  border-radius: 8px;
  border-left: 3px solid var(--blue-light);
}
.dining-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }
.dining-name { font-weight: 600; font-size: 0.9rem; color: #334155; }
.dining-name a { color: var(--blue); }
.dining-name a:hover { text-decoration: underline; color: var(--blue-dark); }
.dining-desc { font-size: 0.78rem; color: var(--gray); margin-top: 0.2rem; line-height: 1.5; }
@media (max-width: 640px) { .dining-grid { grid-template-columns: 1fr; } }

/* === FIESTAS === */
.fiestas-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.fiesta-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-top: 4px solid var(--blue);
}
.fiesta-date-badge {
  display: inline-block;
  background: var(--amber);
  color: #7c2d12;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.fiesta-card h3 {
  font-size: 1.15rem;
  color: #0c4a6e;
  margin: 0 0 0.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}
.fiesta-location {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray);
}
.fiesta-card p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 1rem;
}
.fiesta-link {
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.fiesta-link:hover { text-decoration: underline; }
@media (max-width: 700px) { .fiestas-featured { grid-template-columns: 1fr; } }

/* === GALLERY === */
.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.gallery-header h2 { color: white; margin-bottom: 0.5rem; }
.gallery-sub { color: rgba(255,255,255,0.55); font-size: 0.95rem; }
.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); background: #dde3ea; }
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: zoom-in;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide img { height: 360px; }
.gallery-credits {
  max-width: var(--max-width);
  margin: 1rem auto 0;
  text-align: right;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}
.gallery-credits a { color: rgba(255,255,255,0.45); text-decoration: underline; }

/* === FAQ === */
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header h2 { margin-bottom: 0.5rem; }
.faq-list { max-width: 780px; margin: 0 auto; }
details.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.09);
  padding: 0.25rem 0;
}
details.faq-item:first-of-type { border-top: 1px solid rgba(0,0,0,0.09); }
summary.faq-q {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  list-style: none;
  user-select: none;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::marker { display: none; }
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-light);
  color: white;
  font-size: 1.1rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s;
  line-height: 1;
}
details[open] .faq-icon { transform: rotate(45deg); background: var(--blue-dark); }
.faq-a {
  color: var(--gray);
  line-height: 1.85;
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* === REVIEWS === */
.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-header h2 { margin-bottom: 0.5rem; }
.reviews-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.04em; }
.review-text {
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 0.75rem;
  margin-top: auto;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.85rem; color: var(--dark); }
.review-meta { font-size: 0.75rem; color: var(--gray); }
.reviews-source {
  max-width: var(--max-width);
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
}
.reviews-source a { color: var(--blue); text-decoration: underline; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

/* === BOOKING CTA === */
.booking-section {
  padding: 7rem 1.5rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  background: var(--blue-deep);
}
.booking-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/13717502/pexels-photo-13717502.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.booking-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.booking-section h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.booking-section p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.booking-cta {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.1rem 3rem;
  border-radius: 8px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.booking-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.45);
  color: white;
}
.booking-note {
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}
.booking-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.booking-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
}
.booking-meta-icon { font-size: 1.1rem; }

/* === FOOTER === */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 0.875rem;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.85rem; line-height: 1.75; max-width: 280px; }
.footer-links h4 {
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}
.credits { font-size: 0.72rem; color: rgba(255,255,255,0.3); line-height: 1.7; }
.credits a { color: rgba(255,255,255,0.4); text-decoration: underline; }
.no-cookie-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 57px;
    left: 0; right: 0;
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    gap: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .villa-grid,
  .beach-grid { grid-template-columns: 1fr; gap: 2rem; }
  .beach-grid .beach-image { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .stat-item { padding: 0.5rem 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide img { height: 220px; }
  .gallery-item img { height: 180px; }
  .villa-image-wrap img { height: 280px; }
  .beach-image img { height: 260px; }
  .distances-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; }
  .amenities-grid { grid-template-columns: 1fr; }
  .villa-features { grid-template-columns: 1fr; }
  .booking-meta { gap: 1rem; }
}
@media (max-width: 400px) {
  .stats-inner { gap: 0; }
  .stat-item { padding: 0.5rem 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}

/* === LIGHTBOX === */
#lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
}
#lb.open { display: flex; }
#lb-img {
  max-width: min(90vw, 1400px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.7);
  cursor: default;
}
#lb-close {
  position: absolute;
  top: 0.75rem; right: 1rem;
  background: none; border: none;
  color: #fff; font-size: 2.75rem; line-height: 1;
  cursor: pointer; opacity: 0.7;
  transition: opacity 0.15s;
}
#lb-close:hover { opacity: 1; }
#lb-prev, #lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none;
  color: #fff; font-size: 3rem; line-height: 1;
  padding: 0.4rem 0.8rem; border-radius: 6px;
  cursor: pointer; opacity: 0.75;
  transition: opacity 0.15s, background 0.15s;
}
#lb-prev { left: 1rem; }
#lb-next { right: 1rem; }
#lb-prev:hover, #lb-next:hover { opacity: 1; background: rgba(255,255,255,0.2); }
#lb-cap {
  position: absolute;
  bottom: 1rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
  max-width: 80%; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (max-width: 600px) {
  #lb-prev { left: 0.25rem; }
  #lb-next { right: 0.25rem; }
  #lb-prev, #lb-next { padding: 0.3rem 0.6rem; font-size: 2.25rem; }
}
