/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a3c34;
  background: #faf8f4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: 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; font-weight: 700; line-height: 1.2; color: #0f2922; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #059669;
  background: rgba(5,150,105,0.08);
  border: 1px solid rgba(5,150,105,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: #4a6b62; max-width: 600px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-emerald {
  background: #059669;
  color: #fff;
  box-shadow: 0 4px 16px rgba(5,150,105,0.3);
}
.btn-emerald:hover { background: #047857; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(5,150,105,0.35); }
.btn-outline {
  background: transparent;
  color: #059669;
  border: 2px solid rgba(5,150,105,0.3);
}
.btn-outline:hover { background: rgba(5,150,105,0.06); border-color: #059669; }
.btn-cream {
  background: #f5f0e8;
  color: #0f2922;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.btn-cream:hover { background: #ede6d8; transform: translateY(-2px); }
.btn-outline-cream {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-cream:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ─── SHADOW ─── */
.card-shadow { box-shadow: 0 4px 24px rgba(15,41,34,0.07), 0 1px 4px rgba(15,41,34,0.04); }

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,248,244,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(5,150,105,0.08);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(15,41,34,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; color: #0f2922; }
.logo-accent { color: #059669; }
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-list a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a3c34;
  border-radius: 50px;
  transition: all 0.25s ease;
}
.nav-list a:hover { color: #059669; background: rgba(5,150,105,0.06); }
.nav-toggle { display: none; width: 40px; height: 40px; position: relative; align-items: center; justify-content: center; border-radius: 10px; transition: background 0.2s; }
.nav-toggle:hover { background: rgba(5,150,105,0.06); }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 20px; height: 2px; background: #1a3c34; border-radius: 2px; transition: all 0.3s ease; }
.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -6px; }
.hamburger::after { content: ''; position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,248,244,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(5,150,105,0.1);
    box-shadow: 0 8px 32px rgba(15,41,34,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s ease;
    pointer-events: none;
  }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-list a { padding: 14px 16px; font-size: 1rem; border-radius: 12px; width: 100%; }
  .nav-list .btn-emerald { text-align: center; margin-top: 8px; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #faf8f4 0%, #f0f7f3 50%, #e8f5ee 100%);
}
.hero-bg-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4; }
.blob-1 { width: 400px; height: 400px; background: #059669; top: -100px; right: -80px; opacity: 0.08; }
.blob-2 { width: 300px; height: 300px; background: #34d399; bottom: -60px; left: -60px; opacity: 0.1; }
.blob-3 { width: 200px; height: 200px; background: #f5f0e8; top: 40%; left: 30%; opacity: 0.5; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #059669;
  background: rgba(5,150,105,0.08);
  border: 1px solid rgba(5,150,105,0.2);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-headline { font-size: clamp(2.25rem, 5vw, 3.75rem); margin-bottom: 20px; color: #0f2922; }
.hero-sub { font-size: 1.1rem; color: #4a6b62; line-height: 1.8; margin-bottom: 32px; max-width: 500px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 24px; align-items: center; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: #059669; }
.stat-label { font-size: 0.8rem; color: #6b8f84; }
.stat-divider { width: 1px; height: 40px; background: rgba(5,150,105,0.15); }
.hero-image-wrap { position: relative; }
.hero-image-card { border-radius: 24px; overflow: hidden; }
.hero-image-card img { width: 100%; height: 640px; object-fit: cover; }
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 260px;
}
.float-icon { color: #059669; flex-shrink: 0; }
.float-label { font-size: 0.8rem; color: #6b8f84; }
.float-value { font-weight: 600; font-size: 0.95rem; color: #0f2922; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { max-width: 480px; margin: 0 auto; }
  .hero-float-card { left: 10px; bottom: -10px; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-image-card img { height: 400px; }
  .hero-float-card { display: none; }
}

/* ─── ABOUT ─── */
.about { padding: 100px 0; background: #fff; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-body { color: #4a6b62; margin-bottom: 16px; }
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: #1a3c34; }
.check-icon { color: #059669; flex-shrink: 0; margin-top: 2px; }
.about-image-stack { position: relative; height: 520px; }
.about-img-main { border-radius: 24px; overflow: hidden; position: absolute; top: 0; right: 0; width: 75%; }
.about-img-main img { width: 100%; height: 520px; object-fit: cover; }
.about-img-float { border-radius: 20px; overflow: hidden; position: absolute; bottom: 0; left: 0; width: 55%; }
.about-img-float img { width: 100%; height: 200px; object-fit: cover; }

@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-image-stack { height: 400px; margin-top: 40px; }
}
@media (max-width: 480px) {
  .about { padding: 60px 0; }
  .about-image-stack { height: 300px; }
  .about-img-main img { height: 300px; }
  .about-img-float img { height: 160px; }
}

/* ─── SERVICES ─── */
.services { padding: 100px 0; background: linear-gradient(180deg, #faf8f4 0%, #f0f7f3 100%); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  border: 1px solid rgba(5,150,105,0.06);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,41,34,0.1); border-color: rgba(5,150,105,0.15); }
.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(5,150,105,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #059669;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon-wrap { background: #059669; color: #fff; }
.service-title { font-size: 1.2rem; margin-bottom: 10px; }
.service-desc { font-size: 0.92rem; color: #4a6b62; line-height: 1.7; margin-bottom: 20px; }
.service-link { font-size: 0.88rem; font-weight: 600; color: #059669; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-card:hover .service-link { gap: 10px; }

@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
  .services { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ─── NEIGHBORHOODS ─── */
.neighborhoods { padding: 100px 0; background: #fff; }
.neighborhoods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.neighborhood-card { border-radius: 20px; overflow: hidden; background: #fff; transition: all 0.3s ease; border: 1px solid rgba(5,150,105,0.06); }
.neighborhood-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,41,34,0.1); }
.neighborhood-card .nh-img { overflow: hidden; }
.neighborhood-card .nh-img img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s ease; }
.neighborhood-card:hover .nh-img img { transform: scale(1.05); }
.neighborhood-card .nh-content { padding: 24px; }
.neighborhood-card .nh-name { font-size: 1.15rem; margin-bottom: 8px; }
.neighborhood-card .nh-desc { font-size: 0.9rem; color: #4a6b62; line-height: 1.7; }

@media (max-width: 960px) { .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
  .neighborhoods { padding: 60px 0; }
  .neighborhoods-grid { grid-template-columns: 1fr; }
}

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 100px 0; background: linear-gradient(135deg, #0f2922 0%, #1a4a3a 100%); color: #fff; }
.testimonials .section-tag { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #6ee7b7; }
.testimonials .section-title { color: #fff; }
.testimonials .section-sub { color: rgba(255,255,255,0.6); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 1; color: #059669; opacity: 0.4; position: absolute; top: 20px; right: 28px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.85); margin-bottom: 24px; margin-top: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-name { font-weight: 600; font-size: 0.95rem; color: #fff; }
.author-detail { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

@media (max-width: 960px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
  .testimonials { padding: 60px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ─── CTA BANNER ─── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: #059669;
  overflow: hidden;
}
.cta-bg-decor { position: absolute; inset: 0; pointer-events: none; }
.cta-blob { position: absolute; border-radius: 50%; filter: blur(60px); }
.cta-blob-1 { width: 300px; height: 300px; background: #34d399; top: -80px; left: -60px; opacity: 0.3; }
.cta-blob-2 { width: 250px; height: 250px; background: #047857; bottom: -60px; right: -40px; opacity: 0.4; }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-title { font-size: clamp(1.75rem, 4vw, 2.75rem); color: #fff; margin-bottom: 16px; }
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ─── CONTACT ─── */
.contact { padding: 100px 0; background: #faf8f4; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-body { color: #4a6b62; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item dt { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: #059669; margin-bottom: 4px; }
.contact-item dd { font-size: 0.95rem; color: #1a3c34; padding-left: 30px; }
.contact-item dd a { color: #1a3c34; border-bottom: 1px solid rgba(5,150,105,0.2); transition: border-color 0.2s; }
.contact-item dd a:hover { border-color: #059669; }
.contact-map { border-radius: 16px; overflow: hidden; }

.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(5,150,105,0.06);
}
.form-title { font-size: 1.4rem; margin-bottom: 6px; }
.form-sub { font-size: 0.9rem; color: #4a6b62; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: #1a3c34; }
.form-group input, .form-group select, .form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid #e0e8e4;
  border-radius: 12px;
  background: #faf8f4;
  color: #1a3c34;
  transition: all 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #059669; background: #fff; box-shadow: 0 0 0 3px rgba(5,150,105,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #9bb5ad; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a6b62' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.form-success { text-align: center; padding: 40px 20px; }
.success-icon { margin: 0 auto 16px; }
.success-title { font-size: 1.3rem; margin-bottom: 8px; color: #0f2922; }
.form-success p { color: #4a6b62; font-size: 0.95rem; }

@media (max-width: 960px) { .contact-inner { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .contact { padding: 60px 0; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── FOOTER ─── */
.footer { background: #0f2922; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer .logo-text { color: #fff; }
.footer-tagline { font-size: 0.9rem; margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-heading { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #6ee7b7; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #6ee7b7; }
.footer address { font-style: normal; font-size: 0.9rem; line-height: 1.8; }
.footer a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer a:hover { color: #6ee7b7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
