/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #111; line-height: 1.6; }
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.1; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ===== SECTION BACKGROUNDS ===== */
.section-dark { background: #111; color: #fff; }
.section-light { background: #f5f2ed; color: #111; }
.section-dark .overline { color: #777; }
.section-dark h2 { color: #fff; }
.section-dark p { color: #bbb; }

/* ===== TYPOGRAPHY ===== */
.overline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #888;
  margin-bottom: 14px;
  display: block;
  font-family: 'Inter', sans-serif;
}
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.body-large { font-size: 1.05rem; max-width: 680px; margin: 0 auto 40px; line-height: 1.8; }
.section-dark .body-large { color: #bbb; }
.section-light .body-large { color: #555; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #fff;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.1s;
  border: 2px solid #fff;
}
.btn-primary:hover { background: #e8e5e0; transform: translateY(-1px); }
.section-light .btn-primary, .exclusive-section .btn-primary {
  background: #111;
  color: #fff;
  border-color: #111;
}
.section-light .btn-primary:hover { background: #333; }
.btn-nav {
  display: inline-block;
  background: #fff;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { background: #e8e8e8; }

/* ===== NAV ===== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  padding: 0 32px;
  transition: box-shadow 0.3s, background 0.3s;
}
#navbar.scrolled { background: #000; box-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  height: 56px;
  width: auto;
  filter: invert(1);
}
.footer-logo {
  height: 100px;
  width: auto;
  filter: invert(1);
  opacity: 0.8;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 80px 48px;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-left: 0;
}
.hero-location {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #aaa;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: #fff;
  margin-bottom: 24px;
  font-weight: 900;
  line-height: 1;
}
.hero-sub {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.75;
}

/* ===== EXCLUSIVE SECTION ===== */
.exclusive-section { padding: 100px 24px; }
.exclusive-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.exclusive-text { flex: 1; }
.exclusive-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
.exclusive-text p { color: #bbb; line-height: 1.8; margin-bottom: 20px; font-size: 1rem; }
.exclusive-text .btn-primary { margin-top: 12px; }
.exclusive-image { flex: 1; }
.exclusive-image img { border-radius: 4px; width: 100%; }

/* ===== WHO SECTION ===== */
.who-section { padding: 100px 24px; }
.who-section h2 { margin-bottom: 16px; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  text-align: left;
}
.who-card {
  background: #fff;
  border: 1px solid #e0dbd4;
  border-radius: 4px;
  padding: 32px 28px;
}
.who-icon { font-size: 1.6rem; margin-bottom: 16px; }
.who-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: #111;
}
.who-card p { font-size: 0.92rem; color: #555; line-height: 1.7; }

/* ===== COMPOUND SECTION ===== */
.compound-section { padding: 100px 24px; }
.compound-section .text-center { margin-bottom: 56px; }
.compound-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.compound-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.compound-item--tall { grid-row: span 2; aspect-ratio: auto; }
.compound-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.compound-item:hover img { transform: scale(1.03); }
.compound-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 32px 20px 20px;
}
.compound-caption h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 4px;
}
.compound-caption p { font-size: 0.82rem; color: #ccc; line-height: 1.6; }

/* ===== LIFE SECTION ===== */
.life-section { padding: 100px 24px; }
.life-section .text-center { margin-bottom: 56px; }
.life-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.life-image {
  margin-bottom: 28px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.life-image img { width: 100%; height: 100%; object-fit: cover; }
.life-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  color: #111;
}
.life-col > p { font-size: 0.98rem; color: #555; line-height: 1.8; margin-bottom: 20px; }
.life-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.life-list li {
  font-size: 0.92rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}
.life-list li::before { content: '—'; color: #999; flex-shrink: 0; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 100px 24px; }
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 72px;
}
.about-image {
  flex: 0 0 400px;
  position: sticky;
  top: 84px;
}
.about-image img {
  width: 100%;
  border-radius: 4px;
}
.about-text { flex: 1; }
.about-text h2 { font-size: clamp(2rem, 3vw, 2.6rem); margin-bottom: 28px; }
.about-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-closer {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem !important;
  font-style: italic;
  color: #111 !important;
  border-left: 3px solid #111;
  padding-left: 20px;
  margin-top: 32px !important;
}

/* ===== AVAILABILITY SECTION ===== */
.availability-section { padding: 100px 24px; }
.avail-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}
.avail-left { flex: 0 0 280px; }
.avail-left h2 { font-size: clamp(2rem, 3vw, 2.6rem); margin-bottom: 16px; }
.avail-left > p { font-size: 0.98rem; color: #555; line-height: 1.8; margin-bottom: 28px; }
.avail-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #555;
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-dot--booked { background: #4285f4; }
.legend-dot--open { background: #ddd; border: 1px solid #ccc; }
.avail-cal {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e0dbd4;
  background: #fff;
  padding: 28px;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
}
.cal-nav {
  background: none;
  border: 1px solid #ddd;
  color: #555;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cal-nav:hover { background: #111; color: #fff; border-color: #111; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  text-align: center;
  padding: 6px 0;
  font-family: 'Inter', sans-serif;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: #444;
  border-radius: 3px;
  font-weight: 400;
}
.cal-empty { background: transparent; }
.cal-booked {
  background: #4285f4;
  color: #fff;
  font-weight: 600;
  border-radius: 3px;
}
.cal-today {
  border: 2px solid #111;
  font-weight: 700;
  color: #111;
}

/* ===== EXPERIENCES SECTION ===== */
.experiences-section { padding: 100px 24px; }
.experiences-section .text-center { margin-bottom: 48px; }

.exp-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.exp-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid #333;
  background: transparent;
  color: #777;
  cursor: pointer;
  transition: all 0.2s;
}
.exp-btn.active, .exp-btn:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.exp-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.exp-card:hover { border-color: #444; }
.exp-card.hidden { display: none; }

.exp-img {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
.exp-img--cave { background: linear-gradient(135deg, #0d4a3a 0%, #1a6b52 50%, #0a3328 100%); background-image: url('public/images/compound-exterior.jpg'); }
.exp-img--nimli { background: linear-gradient(135deg, #3d2a1a 0%, #6b4a2a 50%, #2a1a0d 100%); }
.exp-img--lubaantun { background: linear-gradient(135deg, #2a1f0d 0%, #5a3d1a 50%, #1a1205 100%); }
.exp-img--waterfalls { background: linear-gradient(135deg, #0d2a4a 0%, #1a4a6b 50%, #081a30 100%); }
.exp-img--market { background: linear-gradient(135deg, #3a0d1a 0%, #6b1a2a 50%, #280810 100%); }

.exp-body { padding: 24px; }
.exp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.exp-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}
.exp-tag--nature { background: rgba(29, 158, 117, 0.2); color: #4ecfa0; }
.exp-tag--ancient { background: rgba(127, 119, 221, 0.2); color: #a49ff0; }
.exp-tag--culture { background: rgba(216, 90, 48, 0.2); color: #f0845a; }
.exp-duration {
  font-size: 0.72rem;
  color: #555;
  font-style: italic;
  font-family: 'Inter', sans-serif;
}
.exp-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 4px;
}
.exp-subtitle {
  font-size: 0.82rem;
  color: #666;
  font-style: italic;
  margin-bottom: 14px;
}
.exp-desc {
  font-size: 0.88rem;
  color: #aaa;
  line-height: 1.75;
  margin-bottom: 16px;
}
.exp-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.exp-highlights li {
  font-size: 0.8rem;
  color: #666;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.exp-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #444;
}

/* ===== PUNTA GORDA SECTION ===== */
.pg-section {
  padding: 120px 48px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}
.pg-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.pg-inner .overline { color: #888; }
.pg-inner h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 28px;
}
.pg-inner p {
  font-size: 1.05rem;
  color: #bbb;
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 640px;
}
.pg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.pg-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  border: 1px solid #333;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}

/* ===== SPECS BAR ===== */
.specs-bar {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
.spec-item {
  flex: 1;
  min-width: 120px;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid #2a2a2a;
}
.spec-item:last-child { border-right: none; }
.spec-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
  font-family: 'Inter', sans-serif;
}

/* ===== INQUIRE SECTION ===== */
.inquire-section { padding: 100px 24px; }
.inquire-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.inquire-left { flex: 0 0 300px; }
.inquire-left h2 { font-size: clamp(2rem, 3vw, 2.6rem); margin-bottom: 20px; }
.inquire-left > p { color: #bbb; line-height: 1.8; margin-bottom: 28px; font-size: 0.98rem; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 2px;
  transition: background 0.2s;
  margin-bottom: 36px;
}
.btn-whatsapp:hover { background: #1ebe5d; }
.wa-icon { font-size: 1.1rem; }
.inquire-contact p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.6;
}
.inquire-form-wrap { flex: 1; }
.inquire-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  font-family: 'Inter', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #555; }
.form-group textarea { resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }
.form-group select option { background: #1a1a1a; color: #fff; }
.btn-submit {
  background: #fff;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.btn-submit:hover { background: #e0dbd4; }
.form-note { font-size: 0.8rem; color: #555; }
.form-success { text-align: center; padding: 60px 0; }
.form-success h3 { font-size: 1.8rem; color: #fff; margin-bottom: 16px; }
.form-success p { color: #bbb; line-height: 1.75; }

/* ===== FOOTER ===== */
footer { background: #000; padding: 48px 24px; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a { color: #555; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  text-align: center;
  border-top: 1px solid #1a1a1a;
  padding-top: 24px;
  width: 100%;
}
.footer-bottom p { color: #444; font-size: 0.78rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding: 60px 24px; min-height: 90vh; }

  .exclusive-inner { flex-direction: column; gap: 40px; }

  .who-grid { grid-template-columns: repeat(2, 1fr); }

  .compound-grid { grid-template-columns: 1fr 1fr; }
  .compound-item--tall { grid-row: span 1; aspect-ratio: 4/3; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .avail-inner { flex-direction: column; gap: 40px; }
  .avail-left { flex: none; width: 100%; }
  .about-inner { flex-direction: column; gap: 40px; }
  .about-image { flex: none; width: 100%; position: static; }

  .life-split { grid-template-columns: 1fr; gap: 48px; }

  .specs-bar { gap: 0; }
  .spec-item { min-width: 33%; border-bottom: 1px solid #2a2a2a; }

  .inquire-inner { flex-direction: column; gap: 48px; }
  .inquire-left { flex: none; width: 100%; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 3rem; }
  .hero { padding: 40px 20px; }

  nav { padding: 0 16px; }
  .nav-logo { height: 40px; }
  .btn-nav { font-size: 0.72rem; padding: 8px 14px; }

  .who-grid { grid-template-columns: 1fr; }

  .compound-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .spec-item { min-width: 50%; }

  .pg-section { padding: 80px 24px; }

  .reviews-section { padding: 60px 20px; }

  .cal-grid { gap: 4px; }
  .cal-cell { font-size: 0.75rem; padding: 6px 2px; }
  .cal-day-label { font-size: 0.65rem; }

  .exclusive-section,
  .who-section,
  .compound-section,
  .life-section,
  .availability-section,
  .inquire-section { padding: 60px 20px; }
}

/* ===== REVIEWS ===== */
.reviews-section { padding: 100px 0; }
.reviews-section h2 { margin-bottom: 60px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  color: #c8963e;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.review-attr {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 8px;
  border-top: 1px solid #eee;
}

.review-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: #111;
}

.review-source {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
