/* ===========================
   RESET & VARIABLES
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown:     #7C3F1A;
  --brown-dk:  #5A2D0C;
  --brown-lt:  #F5EDE3;
  --gold:      #C8922A;
  --gold-lt:   #F7E6C4;
  --cream:     #FBF6EE;
  --dark:      #1C1209;
  --mid:       #4A3020;
  --gray:      #7A6555;
  --border:    #E8D9C5;
  --white:     #FFFFFF;
  --green:     #3B5C2C;
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'Lato', 'Helvetica Neue', Arial, sans-serif;
  --radius:    10px;
  --shadow:    0 3px 16px rgba(90,45,12,0.10);
  --shadow-md: 0 8px 32px rgba(90,45,12,0.16);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ===========================
   LABELS & HEADINGS
=========================== */
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 10px;
}
.label-light { color: var(--gold-lt); }

h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center p { max-width: 560px; margin: 0 auto; color: var(--gray); }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(200,146,42,0.35);
}
.btn-gold:hover { background: #a67520; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,146,42,0.45); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { border-color: var(--white); transform: translateY(-2px); }

.btn-dark {
  background: var(--brown-dk);
  color: var(--white);
}
.btn-dark:hover { background: var(--brown); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--brown-dk);
  border: 2px solid var(--brown-dk);
}
.btn-outline-dark:hover { background: var(--brown-dk); color: var(--white); }

.btn-full { width: 100%; text-align: center; padding: 15px; font-size: 1rem; }
.req { color: #c0392b; }

/* ===========================
   NAV
=========================== */
.nav {
  background: rgba(28,18,9,0.96);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(200,146,42,0.2);
}

.nav-inner { display: flex; align-items: center; height: 66px; }

.logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-right: auto;
  white-space: nowrap;
}
.logo span { color: var(--white); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 8px 13px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--gold); background: rgba(200,146,42,0.1); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  margin-left: 6px;
}
.nav-cta:hover { background: #a67520 !important; }

.nav-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; padding: 8px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(28,18,9,0.98);
  border-top: 1px solid rgba(200,146,42,0.2);
  padding: 12px 24px 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 11px 0; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.07); text-transform: uppercase; letter-spacing: 0.5px; }
.nav-mobile-cta { background: var(--gold); color: var(--white) !important; text-align: center; padding: 13px !important; border-radius: 4px; margin-top: 12px; border: none !important; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,5,2,0.60) 0%, rgba(28,12,4,0.78) 50%, rgba(10,5,2,0.88) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 3px 24px rgba(0,0,0,0.5);
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  font-style: italic;
  letter-spacing: 0.3px;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   ABOUT
=========================== */
.about { padding: 96px 0; background: var(--cream); }

.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about-text .label { margin-bottom: 12px; }
.about-text p { color: var(--gray); margin-bottom: 16px; font-size: 1rem; max-width: 520px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brown-lt);
  border-radius: 8px;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
}
.feat span { font-size: 1.3rem; }
.feat p { font-size: 0.82rem; font-weight: 700; color: var(--mid); margin: 0; }

.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  border: 3px solid var(--brown-lt);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   EVENT AREAS
=========================== */
.areas { padding: 96px 0; background: var(--dark); }
.areas .section-head h2 { color: var(--white); }
.areas .section-head .label { color: var(--gold); }
.areas .section-head p { color: rgba(255,255,255,0.6); }

.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.area-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.area-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

.area-img { aspect-ratio: 16/9; overflow: hidden; }
.area-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.area-card:hover .area-img img { transform: scale(1.06); }

.area-body { padding: 28px; }
.area-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 900; color: rgba(200,146,42,0.3); line-height: 1; margin-bottom: 6px; }
.area-body h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--white); margin-bottom: 12px; }
.area-body p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 18px; }

.area-list { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 7px; }
.area-list li { font-size: 0.85rem; color: rgba(255,255,255,0.7); padding-left: 18px; position: relative; }
.area-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ===========================
   PRICING
=========================== */
.pricing { padding: 96px 0; background: var(--brown-lt); }

.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.price-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.price-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(200,146,42,0.2);
  transform: scale(1.04);
}
.price-card--featured:hover { transform: scale(1.04) translateY(-4px); }

.price-badge-top {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
  align-self: center;
}

.price-day { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); margin-bottom: 10px; }
.price-amount { font-family: var(--serif); font-size: 3.2rem; font-weight: 900; color: var(--brown); line-height: 1; margin-bottom: 6px; }
.price-hours { font-size: 0.85rem; color: var(--gray); margin-bottom: 20px; }

.price-includes { list-style: none; text-align: left; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.price-includes li { font-size: 0.88rem; color: var(--mid); padding: 5px 0; border-bottom: 1px solid var(--border); }
.price-includes li:last-child { border: none; }

.price-card--deposit { background: var(--dark); border-color: rgba(200,146,42,0.3); }
.price-card--deposit .price-day { color: rgba(255,255,255,0.5); }
.price-card--deposit .price-amount { color: var(--gold); }
.price-card--deposit .price-hours { color: rgba(255,255,255,0.6); }
.deposit-note { font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; }

/* ===========================
   GALLERY
=========================== */
.gallery { padding: 96px 0; background: var(--dark); }
.gallery .section-head h2 { color: var(--white); }
.gallery .section-head .label { color: var(--gold); }
.gallery .section-head p { color: rgba(255,255,255,0.6); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--mid);
}
.gal-item.gal-wide { grid-column: span 2; }

.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gal-item:hover img { transform: scale(1.07); }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,12,4,0.8) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { font-size: 1.5rem; margin-bottom: 4px; }
.gal-overlay p { font-size: 0.8rem; font-weight: 700; color: #fff; text-align: center; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,5,2,0.96);
  backdrop-filter: blur(6px);
  z-index: 600;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  display: none;
}
.lightbox.is-open { display: flex; }
.lb-inner { max-width: 920px; width: 100%; text-align: center; }
.lb-inner img { max-height: 72vh; max-width: 100%; width: auto; border-radius: var(--radius); box-shadow: 0 24px 64px rgba(0,0,0,0.7); object-fit: contain; }
.lb-cap { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 12px; font-style: italic; }
.lb-close { position: fixed; top: 18px; right: 22px; background: rgba(255,255,255,0.1); border: none; color: #fff; font-size: 1.3rem; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 10; }
.lb-close:hover { background: rgba(255,255,255,0.25); }
.lb-prev, .lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: #fff; font-size: 2rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 10; }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }

/* ===========================
   BOOKING
=========================== */
.booking { padding: 96px 0; background: var(--brown-dk); }

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.booking-text h2 { color: var(--white); }
.booking-text .label { color: var(--gold-lt); }
.booking-text p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 24px; max-width: 400px; }

.booking-contact { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.contact-pill {
  background: rgba(200,146,42,0.2);
  border: 1px solid rgba(200,146,42,0.4);
  color: var(--gold-lt);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: 100px;
  transition: background 0.2s;
}
.contact-pill:hover { background: rgba(200,146,42,0.35); }
.contact-pill-wa { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.35); color: #7ff5b0; }

.booking-hours { display: flex; flex-direction: column; gap: 6px; }
.booking-hours p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin: 0; }
.booking-hours strong { color: var(--gold-lt); }

.booking-form {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.booking-form h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--dark); margin-bottom: 24px; }

.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--mid); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: var(--sans);
  color: var(--dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-note { text-align: center; font-size: 0.78rem; color: var(--gray); margin-top: 10px; }

.form-success {
  background: var(--white);
  border-radius: 12px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.success-icon { font-size: 3rem; margin-bottom: 14px; }
.form-success h3 { font-family: var(--serif); font-size: 1.8rem; color: var(--dark); margin-bottom: 12px; }
.form-success p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }
.form-success a { color: var(--gold); font-weight: 700; }

/* ===========================
   FINAL CTA
=========================== */
.cta-final {
  position: relative;
  padding: 100px 24px;
  background: url('../images/real-dj-pool.jpg') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,12,4,0.78);
}
.cta-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.cta-content h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--dark);
  padding: 44px 0 28px;
  border-top: 1px solid rgba(200,146,42,0.15);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-logo { font-family: var(--serif); font-size: 1.3rem; color: var(--gold); font-weight: 700; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-info p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-info a { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); margin-top: 8px; }

/* ===========================
   FLOATING CALL BUTTON
=========================== */
.float-call {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 54px; height: 54px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(200,146,42,0.5);
  z-index: 300;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 8px 26px rgba(200,146,42,0.6); }

/* Mobile bottom bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: var(--dark);
  border-top: 1px solid rgba(200,146,42,0.2);
  padding: 10px 14px;
  gap: 10px;
}
.mobile-bar-call, .mobile-bar-book {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px;
  border-radius: 6px;
  color: var(--white);
}
.mobile-bar-call { background: var(--brown); }
.mobile-bar-call:hover { background: var(--brown-dk); }
.mobile-bar-book { background: var(--gold); }
.mobile-bar-book:hover { background: #a67520; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img { order: -1; }
  .areas-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }
  .booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gal-item.gal-wide { grid-column: span 2; }
  .about-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .float-call { bottom: 80px; }
  .mobile-bar { display: flex; }
  .footer { padding-bottom: 80px; }
  .hero-content h1 { font-size: 2.8rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-grid .gal-wide { grid-column: span 2; }
}

/* ===========================
   WHATSAPP FLOATING BUTTON
=========================== */
.float-wa {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 300;
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}

.float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.65);
  animation: none;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  60%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* On mobile, sit above the bottom bar */
@media (max-width: 640px) {
  .float-wa { bottom: 80px; right: 16px; width: 52px; height: 52px; }
}

/* ===========================
   HERO OVERLAY REFINEMENT
=========================== */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10,5,2,0.45) 0%,
    rgba(20,10,4,0.65) 40%,
    rgba(10,5,2,0.85) 100%
  ) !important;
}

/* ============================================
   CABAÑA MONTERO
============================================ */

/* ── Hero ── */
.cm-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cm-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  transform: scale(1.03);
}

.cm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,5,2,0.5) 0%,
    rgba(20,10,4,0.68) 45%,
    rgba(10,5,2,0.88) 100%
  );
  z-index: 1;
}

.cm-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.cm-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.cm-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  text-shadow: 0 3px 24px rgba(0,0,0,0.5);
}

.cm-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  letter-spacing: 0.3px;
}

.cm-cta { font-size: 1rem; padding: 15px 36px; }

/* ── Features ── */
.cm-features {
  background: var(--cream);
  padding: 72px 0;
  border-top: 3px solid var(--gold);
}

.cm-features-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.cm-feat-divider {
  width: 1px;
  background: var(--border);
  margin: 0 52px;
  align-self: stretch;
}

.cm-feat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.cm-feat-icon {
  font-size: 1.8rem;
  width: 52px;
  height: 52px;
  background: var(--brown-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.cm-feat-head h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--dark);
  font-weight: 700;
}

.cm-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cm-feat-list li {
  font-size: 0.92rem;
  color: var(--mid);
  padding: 8px 12px;
  background: var(--white);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 1px 4px rgba(90,45,12,0.06);
  line-height: 1.4;
}

/* ── Pricing ── */
.cm-pricing {
  background: var(--brown-lt);
  padding: 88px 0;
}

.cm-pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto 24px;
  align-items: start;
}

.cm-price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cm-price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.cm-price-featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(200,146,42,0.2);
  transform: scale(1.03);
}
.cm-price-featured:hover { transform: scale(1.03) translateY(-4px); }

.cm-price-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
  align-self: center;
}

.cm-price-day {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-bottom: 10px;
}

.cm-price-amt {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 4px;
}
.cm-price-amt span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}

.cm-price-hrs {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.cm-price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cm-price-list li {
  font-size: 0.86rem;
  color: var(--mid);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.cm-price-list li:last-child { border: none; }

.cm-price-btn { width: 100%; text-align: center; margin-top: auto; font-size: 0.9rem; }

.cm-deposit-note {
  text-align: center;
  font-size: 0.84rem;
  color: var(--gray);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}

/* ── Gallery ── */
.cm-gallery {
  background: var(--dark);
  padding: 88px 0;
}

.cm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

/* ── Final CTA ── */
.cm-cta-final {
  position: relative;
  padding: 96px 24px;
  background: url('../images/cm-table-long-2.jpg') center 40%/cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.cm-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,10,4,0.80);
}
.cm-cta-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.cm-cta-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}
.cm-cta-content p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cm-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cm-features-inner { grid-template-columns: 1fr; }
  .cm-feat-divider { display: none; }
  .cm-feat-col:first-child { margin-bottom: 40px; }
  .cm-pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .cm-price-featured { transform: none; }
  .cm-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
}

@media (max-width: 600px) {
  .cm-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .cm-cta-btns { flex-direction: column; align-items: center; }
}

/* ===========================
   NAV DROPDOWN
=========================== */
.nav-dropdown {
  position: relative;
}

.nav-drop-toggle {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 8px 13px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.18s, background 0.18s;
}
.nav-drop-toggle:hover,
.nav-drop-toggle.active { color: var(--gold); background: rgba(200,146,42,0.1); }

.drop-arrow {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
  display: inline-block;
}
.nav-drop-toggle.active .drop-arrow { transform: rotate(180deg); }

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,10,4,0.97);
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: 10px;
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 300;
}

.nav-drop-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-drop-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 7px;
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.18s;
  color: rgba(255,255,255,0.85) !important;
}
.nav-drop-menu a:hover { background: rgba(200,146,42,0.15); }

.drop-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(200,146,42,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1px;
}
.drop-text small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* Mobile section labels */
.mob-drop-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 12px 0 4px;
}
.mob-section-link {
  background: rgba(200,146,42,0.1) !important;
  border-color: rgba(200,146,42,0.2) !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
}

/* ===========================
   TWO-AREA INTRO CARDS
=========================== */
.areas-intro {
  background: var(--cream);
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}

.intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.intro-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(90,45,12,0.10);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.intro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(90,45,12,0.18);
}

.intro-card--gold {
  border-color: rgba(200,146,42,0.4);
  box-shadow: 0 4px 24px rgba(200,146,42,0.12);
}
.intro-card--gold:hover {
  box-shadow: 0 14px 40px rgba(200,146,42,0.22);
}

.intro-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.intro-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.intro-card:hover .intro-card-img img { transform: scale(1.06); }

.intro-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,2,0.55) 0%, transparent 60%);
}

.intro-card-badge {
  position: absolute;
  bottom: 14px;
  left: 16px;
  background: rgba(20,10,4,0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
}
.intro-badge--gold {
  background: rgba(200,146,42,0.9);
  border-color: rgba(255,255,255,0.25);
}

.intro-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.intro-card-body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.intro-card-body p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.intro-card-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.intro-card-list li {
  font-size: 0.84rem;
  color: var(--mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.intro-card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.intro-btn {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.88rem;
  padding: 11px 24px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 820px) {
  .intro-cards { grid-template-columns: 1fr; }
  .nav-drop-menu { left: 0; transform: none; }
  .nav-drop-menu.open { transform: none; }
}

/* ===========================
   BOOKING — WHATSAPP ONLY
=========================== */
.booking-wa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.bwa-text h2 { color: var(--white); margin-bottom: 16px; }
.bwa-text .label { color: var(--gold-lt); }
.bwa-text > p { color: rgba(255,255,255,0.72); font-size: 1rem; margin-bottom: 32px; max-width: 480px; }

.bwa-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: var(--white) !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 20px;
}
.bwa-main-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.bwa-note { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.bwa-note a { color: var(--gold); font-weight: 600; }

.bwa-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bwa-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 12px;
  padding: 20px;
  transition: background 0.2s, border-color 0.2s;
}
.bwa-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(200,146,42,0.4);
}

.bwa-card-icon { font-size: 1.4rem; margin-bottom: 8px; }
.bwa-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
}
.bwa-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.bwa-card p small { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.bwa-card p a { color: var(--gold); font-weight: 600; }

/* --green-wa CSS var */
:root { --green-wa: #25d366; }

/* Responsive */
@media (max-width: 820px) {
  .booking-wa-inner { grid-template-columns: 1fr; gap: 40px; }
  .bwa-info { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .bwa-info { grid-template-columns: 1fr; }
  .bwa-main-btn { width: 100%; justify-content: center; }
}
