/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #2c3e35;
  background-color: #faf8f4;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, dl { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.25; color: #1a2e26; }

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a5c3a;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 20px;
}
.section-lead {
  font-size: 1.0625rem;
  color: #4a6355;
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: #1a5c3a;
  color: #f5f0e8;
}
.btn-primary:hover { background: #144a2e; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,92,58,0.25); }
.btn-ghost {
  background: transparent;
  color: #1a5c3a;
  border: 1.5px solid #1a5c3a;
}
.btn-ghost:hover { background: #1a5c3a; color: #f5f0e8; }
.btn-light {
  background: #f5f0e8;
  color: #1a5c3a;
  font-weight: 600;
}
.btn-light:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-light {
  background: transparent;
  color: #f5f0e8;
  border: 1.5px solid rgba(245,240,232,0.6);
}
.btn-outline-light:hover { background: rgba(245,240,232,0.12); border-color: #f5f0e8; }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,92,58,0.08);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.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: 600;
  font-size: 1.0625rem;
  color: #1a2e26;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a:not(.nav-cta) {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #4a6355;
  transition: color 0.2s;
  position: relative;
}
.site-nav a:not(.nav-cta):hover { color: #1a5c3a; }
.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: #1a5c3a;
  transition: width 0.25s;
}
.site-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  padding: 10px 22px;
  background: #1a5c3a;
  color: #f5f0e8 !important;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.25s, transform 0.2s;
}
.nav-cta:hover { background: #144a2e; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #1a2e26; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: 64px 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 48px;
}
.hero-main-card {
  background: #fff;
  border-radius: 16px;
  padding: 56px 48px;
  box-shadow: 0 4px 40px rgba(26,92,58,0.06), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(26,92,58,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a5c3a;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1a2e26;
}
.hero-headline em {
  font-style: italic;
  color: #1a5c3a;
}
.hero-sub {
  font-size: 1.0625rem;
  color: #4a6355;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(26,92,58,0.05);
  border: 1px solid rgba(26,92,58,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(26,92,58,0.1); }
.stat-card svg { color: #1a5c3a; flex-shrink: 0; }
.stat-card--accent {
  background: #1a5c3a;
  border-color: transparent;
}
.stat-card--accent svg { color: #f5f0e8; }
.stat-card--accent .stat-label { color: #d4e8d8; }
.stat-label {
  font-size: 0.9375rem;
  color: #4a6355;
  line-height: 1.5;
  font-weight: 400;
}

.hero-image {
  border-radius: 16px;
  overflow: hidden;
  margin: 0 24px 64px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ===== SERVICES ===== */
.services {
  padding: 96px 0;
  background: #fff;
}
.services .container { text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.service-card {
  background: #faf8f4;
  border-radius: 14px;
  padding: 36px 28px;
  border: 1px solid rgba(26,92,58,0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,92,58,0.08);
  border-color: rgba(26,92,58,0.14);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(26,92,58,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s;
}
.service-card:hover .service-icon { background: rgba(26,92,58,0.14); }
.service-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 10px;
  color: #1a2e26;
}
.service-card p {
  font-size: 0.9375rem;
  color: #4a6355;
  line-height: 1.75;
}

/* ===== ABOUT ===== */
.about { padding: 96px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,92,58,0.08);
}
.about-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.about-content .section-lead { margin-bottom: 20px; }
.about-content p {
  color: #4a6355;
  margin-bottom: 16px;
  font-size: 0.96875rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: #2c3e35;
  font-weight: 500;
}
.about-feature svg { flex-shrink: 0; }

/* ===== APPROACH ===== */
.approach {
  padding: 96px 0;
  background: #1a2e26;
  color: #f5f0e8;
}
.approach .section-eyebrow { color: #6db88a; }
.approach .section-title { color: #f5f0e8; }
.approach .section-lead { color: #a8c4b0; margin-bottom: 64px; }
.approach .container { text-align: center; }
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}
.step { position: relative; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(109,184,138,0.25);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step h3 {
  font-size: 1.125rem;
  color: #f5f0e8;
  margin-bottom: 12px;
}
.step p {
  font-size: 0.90625rem;
  color: #a8c4b0;
  line-height: 1.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 96px 0; background: #fff; }
.testimonials .container { text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.testimonial-card {
  background: #faf8f4;
  border-radius: 14px;
  padding: 36px 28px;
  border: 1px solid rgba(26,92,58,0.06);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(26,92,58,0.07); }
.quote-mark {
  margin-bottom: 16px;
  opacity: 0.8;
}
.testimonial-card p {
  font-size: 0.96875rem;
  color: #4a6355;
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a5c3a;
  font-style: normal;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a5c3a 0%, #144a2e 100%);
}
.cta-inner { text-align: center; }
.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #f5f0e8;
  margin-bottom: 16px;
}
.cta-text {
  font-size: 1.0625rem;
  color: #a8c4b0;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 96px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item svg { flex-shrink: 0; margin-top: 2px; }
.contact-item dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a5c3a;
  margin-bottom: 4px;
}
.contact-item dd {
  font-size: 1rem;
  color: #2c3e35;
  line-height: 1.6;
}
.contact-item a {
  color: #2c3e35;
  transition: color 0.2s;
}
.contact-item a:hover { color: #1a5c3a; text-decoration: underline; }
.contact-map {
  margin-top: 40px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(26,92,58,0.06);
  border: 1px solid rgba(26,92,58,0.06);
}
.form-title {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: #1a2e26;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4a6355;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d8e4dc;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  color: #2c3e35;
  background: #faf8f4;
  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: #1a5c3a;
  box-shadow: 0 0 0 3px rgba(26,92,58,0.08);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9ab09e; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { margin: 0 auto 16px; color: #1a5c3a; }
.form-success h4 {
  font-size: 1.375rem;
  margin-bottom: 8px;
  color: #1a2e26;
}
.form-success p {
  font-size: 0.9375rem;
  color: #4a6355;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1a2e26;
  color: #a8c4b0;
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-text { color: #f5f0e8; }
.footer-tagline {
  font-size: 0.90625rem;
  color: #7aa88a;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 300px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6db88a;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.90625rem;
  color: #a8c4b0;
  transition: color 0.2s;
}
.footer-links a:hover { color: #f5f0e8; }
.footer-contact p {
  font-size: 0.90625rem;
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-contact a {
  color: #a8c4b0;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #f5f0e8; }

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.08);
  padding: 24px 0;
}
.footer-bottom-inner { text-align: center; }
.footer-bottom p {
  font-size: 0.8125rem;
  color: #5a7a64;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 140px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(250,248,244,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(26,92,58,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s, opacity 0.35s;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .site-nav a:not(.nav-cta) { font-size: 1.0625rem; }

  .hero { padding: 40px 0 0; }
  .hero-main-card { padding: 40px 28px; }
  .hero-image { margin: 0 16px 40px; }
  .hero-image img { height: 260px; }

  .services, .about, .approach, .testimonials, .contact { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap img { height: 360px; }
  .approach-steps { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero-side { flex-direction: column; }
  .stat-card { min-width: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; }
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
