/* ─── 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;
  color: #2C3E2D;
  background: #FAFBF7;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
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 { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.2; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4A7C23;
  background: rgba(74, 124, 35, 0.08);
  border: 1px solid rgba(74, 124, 35, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1A3A0E;
  margin-bottom: 20px;
}
.section-lead {
  font-size: 1.1rem;
  color: #5A6B5C;
  max-width: 560px;
  line-height: 1.7;
}
.lead {
  font-size: 1.05rem;
  color: #4A5C4B;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary {
  background: #2D5016;
  color: #fff;
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.3);
}
.btn-primary:hover {
  background: #3A6320;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.35);
}
.btn-outline {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
.btn-text {
  font-size: 0.875rem;
  color: #4A7C23;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px 0;
}
.btn-text:hover { color: #2D5016; }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 251, 247, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 80, 22, 0.08);
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(250, 251, 247, 0.95);
  box-shadow: 0 2px 20px rgba(45, 80, 22, 0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: #1A3A0E;
}
.logo-dot { color: #4A7C23; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text span { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: #5A6B5C; font-family: 'Inter', sans-serif; font-weight: 500; }

/* ─── Nav ─── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3D523E;
  border-radius: 100px;
  transition: all 0.2s ease;
}
.nav-links a:hover { background: rgba(45, 80, 22, 0.06); color: #1A3A0E; }
.nav-cta {
  background: #2D5016 !important;
  color: #fff !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #3A6320 !important; }
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2D5016;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 58, 14, 0.45) 0%,
    rgba(26, 58, 14, 0.35) 40%,
    rgba(26, 58, 14, 0.60) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
  color: #fff;
}
.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.15);
}
.hero-headline em {
  font-style: italic;
  color: #B8D4A0;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── About ─── */
.about {
  padding: 120px 0;
  background: #FAFBF7;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45, 80, 22, 0.12);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(45, 80, 22, 0.15);
  border: 4px solid #FAFBF7;
}
.about-img-secondary img { width: 100%; height: 200px; object-fit: cover; }
.about-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: #2D5016;
  color: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.3);
}
.badge-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  line-height: 1;
}
.badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.about-text { max-width: 480px; }

/* ─── Features ─── */
.feature-item {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding: 16px;
  border-radius: 16px;
  transition: background 0.2s ease;
}
.feature-item:hover { background: rgba(45, 80, 22, 0.04); }
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(45, 80, 22, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D5016;
}
.feature-item strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: #1A3A0E;
  margin-bottom: 2px;
}
.feature-item span {
  font-size: 0.875rem;
  color: #5A6B5C;
}

/* ─── Amenities ─── */
.amenities {
  padding: 120px 0;
  background: linear-gradient(180deg, #F0F5E8 0%, #FAFBF7 100%);
}
.amenities-header {
  text-align: center;
  margin-bottom: 64px;
}
.amenities-header .section-lead { margin: 0 auto; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.amenity-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(45, 80, 22, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(45, 80, 22, 0.1);
  border-color: rgba(74, 124, 35, 0.15);
}
.amenity-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.08), rgba(74, 124, 35, 0.12));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.amenity-card h3 {
  font-size: 1.15rem;
  color: #1A3A0E;
  margin-bottom: 10px;
}
.amenity-card p {
  font-size: 0.9rem;
  color: #5A6B5C;
  line-height: 1.65;
}

/* ─── Location ─── */
.location {
  padding: 120px 0;
  background: #FAFBF7;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 20px; }
.location-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.location-detail svg { flex-shrink: 0; margin-top: 2px; }
.location-detail strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: #1A3A0E;
  margin-bottom: 2px;
}
.location-detail span, .location-detail a {
  font-size: 0.9rem;
  color: #5A6B5C;
}
.location-detail a:hover { color: #2D5016; text-decoration: underline; }
.location-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(45, 80, 22, 0.1);
  height: 440px;
}

/* ─── Gallery ─── */
.gallery {
  padding: 120px 0;
  background: linear-gradient(180deg, #FAFBF7 0%, #F0F5E8 100%);
}
.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.08);
  transition: all 0.3s ease;
}
.gallery-item:hover { transform: scale(1.015); box-shadow: 0 12px 36px rgba(45, 80, 22, 0.14); }
.gallery-item.large { grid-column: span 6; }
.gallery-item:not(.large) { grid-column: span 4; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ─── Contact ─── */
.contact {
  padding: 120px 0;
  background: #1A3A0E;
  color: #fff;
}
.contact .section-tag {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}
.contact .section-title { color: #fff; }
.contact .section-lead { color: rgba(255,255,255,0.7); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.contact-detail svg { color: #8BC34A; flex-shrink: 0; }
.contact-detail a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.contact-detail a:hover { color: #8BC34A; }

/* ─── Form ─── */
.contact-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(8px);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(139, 195, 74, 0.6);
  background: rgba(255,255,255,0.12);
}
.form-group select option { background: #1A3A0E; color: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ─── Success ─── */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success h3 {
  font-size: 1.5rem;
  color: #fff;
}
.form-success p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.success-icon { color: #8BC34A; margin-bottom: 8px; }
.hidden { display: none !important; }

/* ─── Footer ─── */
.footer {
  background: #142A0A;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: #8BC34A; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: #8BC34A; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .about-grid, .location-grid, .contact-grid { gap: 40px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .menu-btn { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 251, 247, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(45, 80, 22, 0.08);
    transform: translateY(-120%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 16px 32px rgba(45, 80, 22, 0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 16px; width: 100%; text-align: center; }
  .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-images { margin-bottom: 40px; }
  .about-img-secondary { right: 16px; bottom: -24px; width: 160px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 12; }
  .gallery-item:not(.large) { grid-column: span 6; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-trust { gap: 16px; }
  .contact-form-wrap { padding: 24px; }
}
@media (max-width: 480px) {
  .gallery-item.large, .gallery-item:not(.large) { grid-column: span 12; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
}
