/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #FAF8F5;
  color: #1A2E1A;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.15; letter-spacing: -0.02em; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 46, 26, 0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(26, 46, 26, 0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 72px; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: #1A2E1A;
}
.nav-logo-icon { color: #2D6A4F; }
.nav-logo-accent { color: #2D6A4F; }
.nav-links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-link {
  padding: 8px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  color: #1A2E1A; transition: background 0.2s, color 0.2s;
}
.nav-link:hover { background: rgba(45, 106, 79, 0.1); color: #2D6A4F; }
.nav-cta {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 10px;
  background: #2D6A4F; color: #fff; font-weight: 600; font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #1B4332; transform: translateY(-1px); }
.nav-toggle { display: none; margin-left: auto; padding: 8px; color: #1A2E1A; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
  padding: 100px 24px 60px;
  background: #FAF8F5;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.geo-circle {
  border-radius: 50%; position: absolute;
}
.geo-circle-1 {
  width: 600px; height: 600px; top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(45,106,79,0.08) 0%, transparent 70%);
}
.geo-circle-2 {
  width: 400px; height: 400px; bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(45,106,79,0.06) 0%, transparent 70%);
}
.geo-rect {
  position: absolute; width: 200px; height: 200px; top: 15%; left: 5%;
  background: rgba(45,106,79,0.04); border-radius: 32px;
  transform: rotate(15deg);
}
.geo-dots {
  position: absolute; bottom: 20%; right: 8%;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(45,106,79,0.15) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.6;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(45,106,79,0.1); color: #2D6A4F;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 900;
  color: #1A2E1A; margin-bottom: 20px;
}
.hero-accent {
  background: linear-gradient(135deg, #2D6A4F, #52B788);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem; color: #4A5D4A; max-width: 480px;
  margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-weight: 600;
  font-size: 0.95rem; transition: all 0.25s;
}
.btn-primary {
  background: #2D6A4F; color: #fff;
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}
.btn-primary:hover { background: #1B4332; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,79,0.35); }
.btn-outline {
  background: transparent; color: #2D6A4F;
  border: 2px solid rgba(45,106,79,0.3);
}
.btn-outline:hover { border-color: #2D6A4F; background: rgba(45,106,79,0.05); }
.btn-white { background: #fff; color: #2D6A4F; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* HERO VISUAL */
.hero-visual { position: relative; min-height: 480px; }
.hero-card-main {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,46,26,0.15);
  position: relative;
}
.hero-card-main img { width: 100%; height: 380px; object-fit: cover; }
.hero-card-overlay {
  position: absolute; bottom: 16px; left: 16px;
  display: flex; gap: 8px;
}
.hero-card-tag {
  padding: 6px 14px; border-radius: 8px;
  background: rgba(255,255,255,0.95); color: #1A2E1A;
  font-size: 0.8rem; font-weight: 600;
  backdrop-filter: blur(8px);
}
.hero-card-tag--alt { background: #2D6A4F; color: #fff; }

/* FLOATING STATS */
.hero-float {
  position: absolute; border-radius: 16px;
  background: #fff; padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(26,46,26,0.12);
  display: flex; align-items: center; gap: 10px;
  animation: float 4s ease-in-out infinite;
}
.hero-float-1 { top: 10%; left: -30px; animation-delay: 0s; }
.hero-float-2 { bottom: 25%; right: -20px; animation-delay: 1s; }
.hero-float-3 { bottom: 5%; left: 10px; animation-delay: 2s; }
.float-stat { display: flex; flex-direction: column; }
.float-stat-num { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem; color: #2D6A4F; }
.float-stat-label { font-size: 0.75rem; color: #6B8F6B; font-weight: 500; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #6B8F6B; font-size: 0.8rem; font-weight: 500;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTION COMMON ===== */
.section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header--right { text-align: right; }
.section-tag {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(45,106,79,0.1); color: #2D6A4F;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: #1A2E1A; margin-bottom: 16px;
}
.section-desc { font-size: 1.1rem; color: #4A5D4A; max-width: 560px; }
.section-header--right .section-desc { margin-left: auto; }

/* ===== SITES ===== */
.sites { background: #FAF8F5; }
.sites-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.site-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,46,26,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.site-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(26,46,26,0.12); }
.site-card-img img { width: 100%; height: 220px; object-fit: cover; }
.site-card-body { padding: 28px; }
.site-card-badge {
  display: inline-block; padding: 4px 12px; border-radius: 6px;
  background: #2D6A4F; color: #fff; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px;
}
.site-card-badge--alt { background: #52B788; }
.site-card-badge--accent { background: #D4A843; color: #1A2E1A; }
.site-card-title { font-size: 1.35rem; font-weight: 700; color: #1A2E1A; margin-bottom: 10px; }
.site-card-desc { font-size: 0.95rem; color: #4A5D4A; margin-bottom: 18px; line-height: 1.6; }
.site-card-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.site-card-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #1A2E1A; font-weight: 500; }
.site-card-features li svg { color: #52B788; flex-shrink: 0; }

/* ===== AMENITIES ===== */
.amenities { background: #1A2E1A; color: #fff; }
.amenities .section-tag { background: rgba(82,183,136,0.2); color: #52B788; }
.amenities .section-title { color: #fff; }
.amenities .section-desc { color: rgba(255,255,255,0.65); }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.amenity-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.amenity-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(82,183,136,0.3); transform: translateY(-4px); }
.amenity-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(82,183,136,0.15); color: #52B788;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.amenity-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.amenity-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===== AREA ===== */
.area { background: #FAF8F5; }
.area-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.area-desc { font-size: 1.05rem; color: #4A5D4A; margin-bottom: 36px; line-height: 1.7; }
.area-highlights { display: flex; flex-direction: column; gap: 24px; }
.area-highlight { display: flex; gap: 20px; }
.area-highlight-num {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.5rem;
  color: #2D6A4F; line-height: 1; min-width: 36px;
}
.area-highlight h4 { font-size: 1.05rem; font-weight: 700; color: #1A2E1A; margin-bottom: 4px; }
.area-highlight p { font-size: 0.9rem; color: #4A5D4A; line-height: 1.5; }
.area-images { position: relative; min-height: 500px; }
.area-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 16px 48px rgba(26,46,26,0.12); }
.area-img-main img { width: 100%; height: 400px; object-fit: cover; }
.area-img-stack { position: absolute; bottom: -30px; right: -30px; display: flex; flex-direction: column; gap: 12px; }
.area-img-small { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(26,46,26,0.12); }
.area-img-small img { width: 260px; height: 200px; object-fit: cover; }
.area-img-small--offset { margin-left: 40px; }

/* ===== GALLERY ===== */
.gallery { background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 16px; }
.gallery-item { border-radius: 16px; overflow: hidden; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.04); }

/* ===== CTA ===== */
.cta { padding: 80px 0; background: #FAF8F5; }
.cta-card {
  position: relative; border-radius: 32px; overflow: hidden;
  background: #2D6A4F; padding: 80px 60px;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { border-radius: 50%; position: absolute; }
.cta-shape-1 { width: 300px; height: 300px; top: -100px; right: -80px; background: rgba(255,255,255,0.06); }
.cta-shape-2 { width: 200px; height: 200px; bottom: -60px; left: 10%; background: rgba(255,255,255,0.04); }
.cta-shape-3 { width: 80px; height: 80px; top: 30%; left: 5%; background: rgba(255,255,255,0.08); }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-tag { background: rgba(255,255,255,0.15); color: #fff; }
.cta-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-desc { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: #FAF8F5; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-desc { font-size: 1.05rem; color: #4A5D4A; margin-bottom: 36px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; }
.contact-detail-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(45,106,79,0.1); color: #2D6A4F;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail strong { display: block; font-family: 'Outfit', sans-serif; font-weight: 700; color: #1A2E1A; margin-bottom: 2px; }
.contact-detail span, .contact-detail a { font-size: 0.95rem; color: #4A5D4A; }
.contact-detail a:hover { color: #2D6A4F; }
.contact-map { border-radius: 16px; overflow: hidden; }
.contact-form-wrap { position: relative; }
.contact-form {
  background: #fff; border-radius: 24px; padding: 40px;
  box-shadow: 0 8px 32px rgba(26,46,26,0.08);
}
.contact-form-title { font-size: 1.5rem; font-weight: 800; color: #1A2E1A; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: #1A2E1A; margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 2px solid rgba(26,46,26,0.12); background: #FAF8F5;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: #1A2E1A;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #2D6A4F; box-shadow: 0 0 0 4px rgba(45,106,79,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 60px 40px;
  background: #fff; border-radius: 24px;
  box-shadow: 0 8px 32px rgba(26,46,26,0.08);
}
.form-success.show { display: flex; }
.form-success-icon { color: #52B788; margin-bottom: 20px; }
.form-success h3 { font-size: 1.5rem; font-weight: 800; color: #1A2E1A; margin-bottom: 8px; }
.form-success p { color: #4A5D4A; }

/* ===== FOOTER ===== */
.footer { background: #1A2E1A; color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: 14px; }
.footer-logo-icon { color: #52B788; }
.footer-logo-accent { color: #52B788; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-links-group h4 { font-family: 'Outfit', sans-serif; font-weight: 700; color: #fff; margin-bottom: 16px; font-size: 0.95rem; }
.footer-links-group a, .footer-links-group span { display: block; font-size: 0.9rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-links-group a:hover { color: #52B788; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.85rem; color: rgba(255,255,255,0.4);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(250,248,245,0.98); backdrop-filter: blur(16px);
    flex-direction: column; padding: 24px;
    border-bottom: 1px solid rgba(26,46,26,0.08);
    transform: translateY(-120%); transition: transform 0.35s ease;
    box-shadow: 0 8px 30px rgba(26,46,26,0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { width: 100%; text-align: center; padding: 14px; }
  .nav-cta { width: 100%; justify-content: center; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; min-height: 360px; }
  .hero-float { display: none; }
  .area-layout { grid-template-columns: 1fr; }
  .area-images { order: -1; min-height: 300px; }
  .area-img-main img { height: 280px; }
  .area-img-stack { position: relative; bottom: auto; right: auto; margin-top: 12px; }
  .area-img-small--offset { margin-left: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 600px) {
  .hero { padding: 90px 16px 50px; }
  .section { padding: 70px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .cta-card { padding: 50px 24px; }
  .contact-form { padding: 28px; }
  .sites-grid { grid-template-columns: 1fr; }
}
</style-file>

<sm-file path="script.js">
(function () {
  'use strict';

  // Nav scroll effect
  const nav = document.getElementById('nav');
  let lastScroll = 0;
  window.addEventListener('scroll', function () {
    const currentScroll = window.pageYOffset;
    if (currentScroll > 50) {
      nav.classList.add('scrolled');
    } else {
      nav.classList.remove('scrolled');
    }
    lastScroll = currentScroll;
  });

  // Mobile menu toggle
  const navToggle = document.getElementById('navToggle');
  const navLinks = document.getElementById('navLinks');
  navToggle.addEventListener('click', function () {
    navLinks.classList.toggle('open');
    const isOpen = navLinks.classList.contains('open');
    navToggle.setAttribute('aria-expanded', isOpen);
  });

  // Close mobile menu on link click
  navLinks.querySelectorAll('a').forEach(function (link) {
    link.addEventListener('click', function () {
      navLinks.classList.remove('open');
      navToggle.setAttribute('aria-expanded', 'false');
    });
  });

  // Contact form
  const form = document.getElementById('contactForm');
  const formSuccess = document.getElementById('formSuccess');
  if (form) {
    form.addEventListener('submit', function (e) {
      e.preventDefault();
      form.style.display = 'none';
      formSuccess.classList.add('show');
    });
  }

  // Scroll reveal animation
  const revealElements = document.querySelectorAll(
    '.site-card, .amenity-card, .area-highlight, .gallery-item, .contact-detail'
  );
  if ('IntersectionObserver' in window) {
    const observer = new IntersectionObserver(function (entries) {
      entries.forEach(function (entry) {
        if (entry.isIntersecting) {
          entry.target.style.opacity = '1';
          entry.target.style.transform = 'translateY(0)';
          observer.unobserve(entry.target);
        }
      });
    }, { threshold: 0.15, rootMargin: '0px 0px -40px 0px' });

    revealElements.forEach(function (el, i) {
      el.style.opacity = '0';
      el.style.transform = 'translateY(24px)';
      el.style.transition = 'opacity 0.6s ease ' + (i % 6) * 0.08 + 's, transform 0.6s ease ' + (i % 6) * 0.08 + 's';
      observer.observe(el);
    });
  } else {
    revealElements.forEach(function (el) {
      el.style.opacity = '1';
      el.style.transform = 'none';
    });
  }
})();
