/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a2e1f;
  background: #faf9f6;
  -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; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
:root {
  --green-900: #0f3d21;
  --green-800: #1a5632;
  --green-700: #226b3f;
  --green-600: #2d8a52;
  --green-500: #3da863;
  --green-100: #d4eddf;
  --green-50:  #eef7f1;
  --cream:     #faf9f6;
  --cream-dark:#f0efe9;
  --sand:      #e8e4db;
  --text:      #1a2e1f;
  --text-muted:#4a5e4f;
  --text-light:#6b7f6f;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 4px 24px rgba(26,86,50,.08);
  --shadow-lg: 0 12px 48px rgba(26,86,50,.12);
}

h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--green-900);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  padding: 12px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 8px 20px; font-size: .875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--green-800);
  color: #fff;
  border-color: var(--green-800);
}
.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-800);
}
.btn-outline:hover {
  background: var(--green-800);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--green-800);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--green-800);
  border-color: #fff;
}
.btn-light:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,249,246,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,86,50,.08);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  color: var(--green-900);
}
.logo-icon { color: var(--green-700); }
.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--green-800); background: var(--green-50); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--green-800);
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: var(--green-50); }

/* ── Mobile Nav ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15,61,33,.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }
.nav-overlay-inner {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--cream);
  padding: 96px 32px 32px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.nav-overlay.active .nav-overlay-inner { transform: translateX(0); }
.nav-overlay ul { display: flex; flex-direction: column; gap: 4px; }
.nav-overlay a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  transition: background .2s;
}
.nav-overlay a:hover { background: var(--green-50); color: var(--green-800); }

/* ── 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-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,61,33,.82) 0%,
    rgba(26,86,50,.72) 40%,
    rgba(45,138,82,.55) 100%
  );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(15,61,33,.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  font-size: .8125rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,.2);
}
.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.text-accent { color: #a8e6c3; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: #fff;
}
.stat-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.25);
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.6);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── About ── */
.about { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.about-img-float img { width: 240px; height: 170px; object-fit: cover; }
.about-accent {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 120px;
  height: 120px;
  background: var(--green-100);
  border-radius: var(--radius);
  z-index: -1;
}
.about-content .section-title { margin-bottom: 20px; }
.about-content > p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}
.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}
.feature-icon { color: var(--green-600); flex-shrink: 0; }
.about-content .btn { margin-top: 8px; }

/* ── Services ── */
.services { padding: 100px 0; background: var(--green-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 28px; }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  margin-bottom: 20px;
}
.service-card-body h3 {
  font-size: 1.25rem;
  color: var(--green-900);
  margin-bottom: 12px;
}
.service-card-body p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Areas ── */
.areas { padding: 100px 0; }
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.areas-content .section-subtitle { margin-bottom: 32px; }
.areas-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.areas-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}
.areas-list svg { color: var(--green-600); flex-shrink: 0; }
.areas-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 500px;
}
.areas-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Testimonials ── */
.testimonials { padding: 100px 0; background: var(--cream-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.quote-mark {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--green-100);
  opacity: .7;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--green-100);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
}
.author-detail {
  display: block;
  font-size: .8125rem;
  color: var(--text-light);
}

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,61,33,.88), rgba(45,138,82,.75));
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  margin-bottom: 20px;
}
.cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact ── */
.contact { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin: 32px 0; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--green-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-800);
  margin-bottom: 4px;
}
.contact-item span, .contact-item a {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--green-700); }
.contact-map { border-radius: var(--radius); overflow: hidden; margin-top: 8px; }

/* ── Form ── */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-size: 1.5rem;
  color: var(--green-900);
  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: 20px; }
.form-group label {
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(61,168,99,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: .8125rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}
.form-success h3 {
  font-size: 1.5rem;
  color: var(--green-900);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ── Footer ── */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.logo-light { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-links strong, .footer-contact strong {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
}
.footer-disclaimer { max-width: 480px; text-align: right; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid, .areas-layout, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-float { right: 16px; bottom: -24px; }
  .about-img-main img { height: 340px; }
  .areas-image { min-height: 360px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .hero-content { padding: 100px 24px 80px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
