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

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; font-weight: 700; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a5c3a;
  background: #d4edda;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.light { color: #f5f0e8; background: rgba(255,255,255,0.15); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; color: #1a2e23; }
.section-title.light { color: #f5f0e8; }
.section-desc { font-size: 1.1rem; color: #4a6352; max-width: 560px; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }
.lead { font-size: 1.15rem; color: #3d5a45; margin-bottom: 20px; line-height: 1.7; }
.lead.light { color: rgba(245,240,232,0.85); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #1a5c3a;
  color: #f5f0e8;
  border: 2px solid #1a5c3a;
}
.btn-primary:hover { background: #144a2e; border-color: #144a2e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,92,58,0.3); }
.btn-outline {
  background: transparent;
  color: #1a5c3a;
  border: 2px solid #1a5c3a;
}
.btn-outline:hover { background: #1a5c3a; color: #f5f0e8; transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,92,58,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(26,46,35,0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a5c3a;
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2d4a38;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1a5c3a;
  transition: width 0.3s;
}
.nav-links a:hover { color: #1a5c3a; }
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #1a5c3a;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f5f0e8 0%, #e8f0e4 40%, #d4edda 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.geo { position: absolute; opacity: 0.12; }
.geo-circle-1 {
  width: 500px; height: 500px;
  border-radius: 50%;
  background: #1a5c3a;
  top: -150px; right: -100px;
}
.geo-circle-2 {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: #2d8a56;
  bottom: -80px; left: -60px;
}
.geo-square-1 {
  width: 200px; height: 200px;
  background: #1a5c3a;
  top: 20%; left: 5%;
  transform: rotate(15deg);
  border-radius: 24px;
}
.geo-triangle {
  width: 0; height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 200px solid #2d8a56;
  top: 15%; right: 10%;
  opacity: 0.08;
}
.geo-dots {
  width: 120px; height: 120px;
  bottom: 20%; right: 25%;
  background-image: radial-gradient(circle, #1a5c3a 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.3;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a5c3a;
  color: #f5f0e8;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #1a2e23;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title .accent { color: #1a5c3a; font-style: italic; font-weight: 600; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #3d5a45;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border-radius: 60px;
  padding: 20px 40px;
  border: 1px solid rgba(26,92,58,0.1);
}
.stat { text-align: center; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: #1a5c3a; }
.stat-label { font-size: 0.78rem; color: #4a6352; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.stat-divider { width: 1px; height: 32px; background: rgba(26,92,58,0.15); margin: 0 24px; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #1a5c3a;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  animation: float 2s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ─── ABOUT ─── */
.about { padding: 120px 0; background: #f5f0e8; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,46,35,0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,46,35,0.15);
  border: 4px solid #f5f0e8;
}
.about-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.accent-block { width: 60px; height: 60px; border-radius: 12px; }
.accent-block.accent-green { background: #1a5c3a; }
.accent-block.accent-cream { background: #f5f0e8; border: 2px solid #d4edda; }
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { color: #4a6352; margin-bottom: 16px; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(26,92,58,0.08);
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a2e23;
  transition: transform 0.3s, box-shadow 0.3s;
}
.highlight:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,46,35,0.08); }
.highlight svg { color: #1a5c3a; flex-shrink: 0; }

/* ─── AMENITIES ─── */
.amenities {
  padding: 120px 0;
  background: #1a2e23;
  position: relative;
  overflow: hidden;
}
.amenities::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(26,92,58,0.3);
  top: -300px; right: -200px;
}
.amenities .section-tag { background: rgba(255,255,255,0.1); color: #a8d5b8; }
.amenities .section-title { color: #f5f0e8; }
.amenities .section-desc { color: rgba(245,240,232,0.6); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.amenity-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}
.amenity-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.amenity-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.amenity-icon.green { background: #1a5c3a; color: #f5f0e8; }
.amenity-icon.cream { background: #f5f0e8; color: #1a5c3a; }
.amenity-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f5f0e8;
  margin-bottom: 10px;
}
.amenity-card p { font-size: 0.9rem; color: rgba(245,240,232,0.55); line-height: 1.6; }

/* ─── GALLERY ─── */
.gallery { padding: 120px 0; background: #f5f0e8; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 20px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,35,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #f5f0e8; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; }
.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 5 / 9; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2 / 3; }

/* ─── EXPERIENCE ─── */
.experience {
  padding: 120px 0;
  background: #1a5c3a;
  position: relative;
  overflow: hidden;
}
.experience-shapes { position: absolute; inset: 0; pointer-events: none; }
.exp-shape { position: absolute; opacity: 0.08; }
.exp-circle {
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 3px solid #f5f0e8;
  top: -100px; left: -100px;
}
.exp-square {
  width: 200px; height: 200px;
  background: #f5f0e8;
  bottom: -60px; right: 10%;
  transform: rotate(30deg);
  border-radius: 20px;
}
.exp-dots {
  width: 100px; height: 100px;
  bottom: 20%; left: 15%;
  background-image: radial-gradient(circle, #f5f0e8 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.5;
}
.experience-content { position: relative; z-index: 1; }
.experience-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.exp-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.exp-feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(245,240,232,0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.exp-feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f5f0e8;
  margin-bottom: 6px;
}
.exp-feature p { font-size: 0.9rem; color: rgba(245,240,232,0.55); line-height: 1.6; }

/* ─── CONTACT ─── */
.contact { padding: 120px 0; background: #f5f0e8; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p { color: #4a6352; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #1a5c3a;
  color: #f5f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: #1a5c3a; margin-bottom: 4px; }
.contact-item p { font-size: 0.95rem; color: #3d5a45; line-height: 1.5; }
.contact-item a { color: #1a5c3a; font-weight: 500; transition: color 0.3s; }
.contact-item a:hover { color: #2d8a56; }
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(26,46,35,0.08);
  border: 1px solid rgba(26,92,58,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2e23;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(26,92,58,0.15);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1a2e23;
  background: #f9f7f2;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1a5c3a;
  box-shadow: 0 0 0 3px rgba(26,92,58,0.1);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9aa89e; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 32px;
  animation: fadeIn 0.4s ease;
}
.form-success svg { color: #1a5c3a; }
.form-success p { color: #3d5a45; font-size: 0.95rem; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ─── FOOTER ─── */
.footer {
  background: #1a2e23;
  padding: 80px 0 0;
  color: #f5f0e8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { color: #f5f0e8; margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; color: rgba(245,240,232,0.5); line-height: 1.7; max-width: 280px; }
.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.4);
  margin-bottom: 20px;
}
.footer-links a,
.footer-links p {
  display: block;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.7);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-links a:hover { color: #f5f0e8; }
.footer-links p { line-height: 1.6; }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.3);
}

/* ─── MOBILE MENU ─── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(245,240,232,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid rgba(26,92,58,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.1rem; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-float { right: 0; bottom: -24px; }
  .about-accent { top: -12px; left: -12px; }
  .about-highlights { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
  .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: 3 / 4; }
  .experience-features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-direction: column; gap: 12px; padding: 24px 32px; }
  .stat-divider { width: 40px; height: 1px; margin: 0; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 16px 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .section-title { font-size: 1.8rem; }
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
