:root {
  --bs-body-font-family: "Manrope", sans-serif;
  --bg: #f4efe4;
  --bg-soft: #e8efe8;
  --surface: rgba(255, 255, 255, 0.72);
  --text: #183933;
  --muted: #4d685f;
  --line: rgba(24, 57, 51, 0.12);
  --brand: #0e7c79;
  --brand-deep: #0d5351;
  --accent: #b9d35b;
  --shadow: 0 24px 60px rgba(13, 83, 81, 0.14);
  --radius: 1.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(185, 211, 91, 0.22), transparent 30%),
    radial-gradient(circle at right 20%, rgba(14, 124, 121, 0.16), transparent 26%),
    linear-gradient(180deg, #f7f1e7 0%, #edf3ee 100%);
}

h1, h2, h3, h4, h5, h6, .display-title, .section-title, .accordion-button {
  font-family: "Cormorant Garamond", serif;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(244, 239, 228, 0.78);
}

.brand img {
  width: 170px;
  max-width: 100%;
}

.navbar {
  --bs-navbar-color: var(--muted);
  --bs-navbar-hover-color: var(--brand-deep);
  --bs-navbar-active-color: var(--brand-deep);
}

.py-lg-6 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

.hero-section {
  isolation: isolate;
}

.hero-intro {
  max-width: 980px;
}

.hero-top-copy,
.hero-bottom-copy {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-top-copy {
  padding: 2em;
}

.hero-subtitle {
  max-width: 860px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.7;
}

.hero-banner {
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  background: #0b1d1b;
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-bottom-copy .display-title {
  color: var(--text);
}

.hero-price-callout,
.price-highlight {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 180, 0.98);
  background: linear-gradient(135deg, rgba(255, 249, 160, 0.98), rgba(255, 222, 35, 0.96) 55%, rgba(255, 204, 0, 0.98));
  color: #111;
  text-decoration: none !important;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.48);
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(255, 240, 120, 0.45),
    0 0 18px rgba(255, 236, 90, 0.95),
    0 0 42px rgba(255, 221, 20, 0.8),
    0 0 72px rgba(255, 208, 0, 0.52),
    0 18px 34px rgba(17, 17, 17, 0.16);
  animation: neonPulse 1.45s ease-in-out infinite;
}

.hero-price-callout:hover,
.price-highlight:hover,
.hero-price-callout:focus,
.price-highlight:focus {
  color: #111;
  text-decoration: none !important;
}

a.hero-price-callout,
a.price-highlight,
a.hero-price-callout:link,
a.price-highlight:link,
a.hero-price-callout:visited,
a.price-highlight:visited,
a.hero-price-callout:hover,
a.price-highlight:hover,
a.hero-price-callout:focus,
a.price-highlight:focus,
a.hero-price-callout:active,
a.price-highlight:active {
  color: #111 !important;
  text-decoration: none !important;
}

.hero-price-callout {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.price-highlight {
  font-size: 1rem;
}

.price-highlight-soft {
  background: linear-gradient(135deg, rgba(255, 247, 138, 0.9), rgba(255, 214, 10, 0.82));
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255, 240, 120, 0.38),
      0 0 16px rgba(255, 236, 90, 0.82),
      0 0 36px rgba(255, 218, 20, 0.62),
      0 0 62px rgba(255, 208, 0, 0.38),
      0 16px 30px rgba(17, 17, 17, 0.14);
  }

  50% {
    box-shadow:
      0 0 0 2px rgba(255, 248, 180, 0.72),
      0 0 22px rgba(255, 246, 150, 1),
      0 0 54px rgba(255, 228, 40, 0.95),
      0 0 92px rgba(255, 204, 0, 0.7),
      0 22px 42px rgba(17, 17, 17, 0.2);
  }
}

.glass-panel,
.themed-card,
.trust-card,
.info-pill,
.amenity-chip,
.accordion-item,
.section-figure {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.glass-panel,
.themed-card,
.trust-card,
.accordion-item,
.cta-banner,
.section-figure {
  border-radius: calc(var(--radius) + 0.25rem);
}

.section-figure {
  overflow: hidden;
}

.section-figure img,
.card-media {
  display: block;
  width: 100%;
  object-fit: cover;
}

.section-figure img {
  aspect-ratio: 4 / 3;
}

.card-media {
  aspect-ratio: 16 / 10;
  border-top-left-radius: calc(var(--radius) + 0.25rem);
  border-top-right-radius: calc(var(--radius) + 0.25rem);
}

.display-title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
}

.eyebrow {
  color: var(--brand-deep);
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}


.btn-brand {
  --bs-btn-color: #f7fffb;
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-color: #f7fffb;
  --bs-btn-hover-bg: var(--brand-deep);
  --bs-btn-hover-border-color: var(--brand-deep);
  --bs-btn-focus-shadow-rgb: 13, 83, 81;
  --bs-btn-active-color: #f7fffb;
  --bs-btn-active-bg: var(--brand-deep);
  --bs-btn-active-border-color: var(--brand-deep);
  box-shadow: var(--shadow);
}

.btn-outline-brand {
  --bs-btn-color: var(--brand-deep);
  --bs-btn-border-color: rgba(13, 83, 81, 0.18);
  --bs-btn-hover-color: #f7fffb;
  --bs-btn-hover-bg: var(--brand-deep);
  --bs-btn-hover-border-color: var(--brand-deep);
  --bs-btn-active-color: #f7fffb;
  --bs-btn-active-bg: var(--brand-deep);
  --bs-btn-active-border-color: var(--brand-deep);
}

.btn-soft {
  border-color: rgba(13, 83, 81, 0.14);
  background: rgba(255, 255, 255, 0.52);
}

.whatsapp-cta {
  --bs-btn-color: #111;
  --bs-btn-bg: #25d366;
  --bs-btn-border-color: #25d366;
  --bs-btn-hover-color: #111;
  --bs-btn-hover-bg: #149647;
  --bs-btn-hover-border-color: #149647;
  --bs-btn-active-color: #111;
  --bs-btn-active-bg: #117a3a;
  --bs-btn-active-border-color: #117a3a;
  box-shadow: 0 18px 36px rgba(20, 150, 71, 0.22);
}

.info-pill,
.amenity-chip {
  border-radius: 1.25rem;
  padding: 1rem 1.1rem;
  font-weight: 700;
  height: 100%;
}

.info-pill i,
.amenity-chip i {
  color: var(--brand);
}

.badge-soft {
  color: var(--brand-deep) !important;
  background: rgba(185, 211, 91, 0.22) !important;
}

.stat-value {
  color: var(--brand-deep);
  font-size: 1.8rem;
  font-weight: 800;
}

.section-space {
  padding: 5rem 0;
}

.gallery-section {
  padding-top: 3.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.25rem);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.map-preview {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  cursor: zoom-in;
  line-height: 0;
}

.map-preview img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.map-modal-content {
  background: rgba(244, 239, 228, 0.96);
  border-radius: calc(var(--radius) + 0.25rem);
}

.map-modal-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.section-soft,
.contact-section {
  background:
    radial-gradient(circle at right top, rgba(14, 124, 121, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(13, 83, 81, 0.06), rgba(255, 255, 255, 0));
}

.accordion {
  --bs-accordion-color: var(--text);
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-bg: rgba(255, 255, 255, 0.72);
  --bs-accordion-active-bg: rgba(255, 255, 255, 0.72);
  --bs-accordion-active-color: var(--brand-deep);
  --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-item + .accordion-item {
  margin-top: 0.875rem;
}

.accordion-button {
  border-radius: calc(var(--radius) + 0.25rem) !important;
  font-size: 1.2rem;
}

.accordion-body,
.text-muted {
  color: var(--muted) !important;
}

.lake-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
}

.lake-shape-a {
  right: -80px;
  bottom: -120px;
  width: 340px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(14, 124, 121, 0.14), rgba(14, 124, 121, 0));
}

.lake-shape-b {
  left: -100px;
  top: 60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 50% 50%, rgba(185, 211, 91, 0.2), rgba(185, 211, 91, 0));
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #111;
  background: linear-gradient(135deg, #25d366 0%, #149647 100%);
  box-shadow: 0 18px 36px rgba(20, 150, 71, 0.35);
  font-size: 1.85rem;
}

.floating-whatsapp:hover {
  color: #111;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .brand img {
    width: 138px;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.72);
  }

  .hero-banner {
    margin-top: 0;
  }

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

@media (max-width: 575.98px) {
  .hero-top-copy,
  .hero-bottom-copy {
    width: min(100%, calc(100% - 1.4rem));
  }

  .hero-top-copy {
    padding: 2.25rem 0 1.5rem;
  }

  .hero-price-callout,
  .price-highlight {
    width: 100%;
    max-width: 320px;
  }

  .display-title {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    line-height: 1.05;
  }

  .hero-subtitle {
    max-width: 92%;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-top-copy .eyebrow {
    font-size: 0.72rem;
  }

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