:root {
  --bg: #111111;
  --bg-soft: #181818;
  --bg-card: rgba(35, 35, 35, 0.78);
  --text: #f7f7f5;
  --text-muted: #eae8e2;
  --line: rgba(234, 232, 226, 0.18);
  --accent: #b89d5c;
  --accent-2: #6e8a63;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1260px;
  --transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  cursor: pointer;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(184, 157, 92, 0.14), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  min-height: 48px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: transparent;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.page-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--bg);
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  border-top-color: var(--accent);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.cursor-glow {
  position: fixed;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: screen;
  background: rgba(184, 157, 92, 0.22);
  z-index: 9998;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.cursor-glow.active {
  width: 60px;
  height: 60px;
  background: rgba(184, 157, 92, 0.12);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(17, 17, 17, 0.78);
  backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-bar {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 140px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  color: rgba(247,247,245,0.9);
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  transition: transform 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: white;
  transition: var(--transition);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-slideshow,
.hero-overlay,
.hero-content {
  position: absolute;
  inset: 0;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-slideshow .slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slideshow .slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.38), rgba(0,0,0,0.6));
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(7,7,7,0.75), rgba(7,7,7,0.25));
}

.hero-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding-top: 80px;
}

.hero-logo {
  width: 220px;
  margin-bottom: 20px;
}

.hero-subtitle {
  max-width: 720px;
  font-size: 1.08rem;
  color: rgba(247,247,245,0.9);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(247,247,245,0.78);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 24px;
}

.mouse {
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  position: relative;
}

.mouse span {
  position: absolute;
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255,255,255,0.8);
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  animation: scroll 1.4s infinite;
}

@keyframes scroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

.intro-grid,
.experience-grid,
.location-grid,
.faq-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

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

.intro-media img,
.experience-card img {
  border-radius: calc(var(--radius) + 4px);
  min-height: 660px;
  box-shadow: var(--shadow);
}

.intro-copy,
.faq-copy,
.experience-copy,
.location-copy {
  display: grid;
  gap: 18px;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item strong {
  color: var(--accent);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.bungalow-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bungalow-detail-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.bungalow-detail {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.bungalow-detail .detail-media img {
  width: 100%;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}

.detail-body h3 {
  margin-top: 0;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 157, 92, 0.45);
}

.bungalow-card img {
  height: 320px;
  transition: transform 0.7s ease;
}

.bungalow-card:hover img {
  transform: scale(1.06);
}

.card-body {
  padding: 28px;
  display: grid;
  gap: 12px;
}

.card-meta {
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.77rem;
}

.amenities-inline {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.amenities-inline li {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.amenities-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(184,157,92,0.03));
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.amenity-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 24px;
  min-height: 200px;
  display: grid;
  gap: 10px;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.amenity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184,157,92,0.38);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(184,157,92,0.14);
  color: var(--accent);
}

.amenity-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.masonry-gallery {
  columns: 3 280px;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.gallery-item img {
  height: 100%;
  min-height: 240px;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.18));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item.tall img { min-height: 380px; }
.gallery-item.wide img { min-height: 320px; }

.experience-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.experience-stack {
  display: grid;
  gap: 20px;
}

.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-card img {
  min-height: 280px;
  transition: transform 0.8s ease;
}

.experience-card:hover img {
  transform: scale(1.06);
}

.experience-overlay {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(15,15,15,0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px 18px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.stat-row strong {
  display: block;
  font-size: 1.9rem;
  color: var(--accent);
}

.stat-row span {
  color: rgba(247,247,245,0.74);
  font-size: 0.92rem;
}

.reviews-section {
  background: linear-gradient(180deg, rgba(184,157,92,0.05), transparent);
}

.review-slider {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 18px;
}

.slider-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 1.2rem;
}

.review-track {
  position: relative;
  min-height: 260px;
}

.review-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 34px;
  display: grid;
  gap: 16px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.review-card.active {
  opacity: 1;
  transform: translateY(0);
}

.stars {
  color: var(--accent);
  letter-spacing: 0.2em;
}

.review-author {
  color: rgba(247,247,245,0.78);
  font-size: 0.92rem;
}

.faq-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-weight: 500;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.1rem;
}

.faq-list details[open] summary::after {
  content: '–';
}

.faq-list p {
  margin-top: 12px;
  padding-right: 18px;
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  padding: 44px;
  background: linear-gradient(135deg, rgba(184,157,92,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1500;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(17,17,17,0.78);
  backdrop-filter: blur(14px);
  color: var(--text);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.floating-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(184,157,92,0.4);
}

.floating-btn.wa {
  background: transparent;
  border: none;
  color: white;
}

.floating-btn.wa:hover {
  transform: scale(1.1);
}

.floating-btn.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 90px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.7fr;
  gap: 26px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 16px;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(247,247,245,0.76);
}

.social-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 46px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(247,247,245,0.52);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(247,247,245,0.52);
}

.footer-bottom a:hover {
  color: rgba(247,247,245,0.85);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 100%;
  border-radius: 18px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 0;
  font-size: 2rem;
  color: white;
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-24px);
}

.reveal-left.is-visible {
  transform: translateX(0);
}

.reveal-right {
  transform: translateX(24px);
}

.reveal-right.is-visible {
  transform: translateX(0);
}
