  /* ─── Reset & Base ─── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-padding-top: 80px; }
  body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; }
  img, svg { display: block; max-width: 100%; }
  button, input, select, textarea { font: inherit; }

  /* ─── Utility ─── */
  .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .skip-link { position: absolute; top: -100%; left: 16px; background: #166534; color: #fff; padding: 8px 16px; border-radius: 0 0 8px 8px; z-index: 9999; font-weight: 600; }
  .skip-link:focus { top: 0; }

  /* ─── Section Shared ─── */
  .section { padding: 100px 0; }
  .section__header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
  .section__eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #166534; margin-bottom: 12px; }
  .section__title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.2; color: #14532d; margin-bottom: 20px; }
  .section__subtitle { font-size: 17px; color: #4a5a4f; line-height: 1.7; }

  /* ─── Buttons ─── */
  .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all 0.25s ease; }
  .btn:focus-visible { outline: 3px solid #86efac; outline-offset: 2px; }
  .btn--primary { background: #166534; color: #fff; border-color: #166534; }
  .btn--primary:hover { background: #14532d; border-color: #14532d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22, 101, 52, 0.3); }
  .btn--ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.3); backdrop-filter: blur(4px); }
  .btn--ghost:hover { background: rgba(255,255,255,0.22); border-color: #fff; transform: translateY(-2px); }
  .btn--outline { background: transparent; color: #166534; border-color: #166534; }
  .btn--outline:hover { background: #166534; color: #fff; transform: translateY(-2px); }
  .btn--lg { padding: 18px 36px; font-size: 16px; }
  .btn--full { width: 100%; justify-content: center; }

  /* ─── Navigation ─── */
  .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(250, 250, 247, 0.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(22, 101, 52, 0.08); transition: box-shadow 0.3s ease; }
  .nav.scrolled { box-shadow: 0 4px 24px rgba(20, 83, 45, 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; text-decoration: none; color: #14532d; }
  .nav__logo-text { font-size: 15px; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
  .nav__logo-accent { color: #166534; font-weight: 600; }
  .nav__links { display: flex; align-items: center; gap: 32px; }
  .nav__link { font-size: 15px; font-weight: 500; color: #4a5a4f; text-decoration: none; position: relative; transition: color 0.2s; }
  .nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #166534; transition: width 0.25s ease; }
  .nav__link:hover { color: #166534; }
  .nav__link:hover::after { width: 100%; }
  .nav__cta { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; background: #166534; color: #fff; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.25s ease; }
  .nav__cta:hover { background: #14532d; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(22, 101, 52, 0.25); }
  .nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
  .nav__toggle-bar { display: block; width: 24px; height: 2px; background: #14532d; border-radius: 2px; transition: all 0.3s ease; }
  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] .nav__toggle-bar: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(135deg, rgba(5, 46, 22, 0.88) 0%, rgba(20, 83, 45, 0.82) 40%, rgba(22, 101, 52, 0.75) 100%); }
  .hero__content { position: relative; z-index: 1; text-align: center; max-width: 820px; padding: 120px 24px 80px; }
  .hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(134, 239, 172, 0.15); border: 1px solid rgba(134, 239, 172, 0.3); border-radius: 100px; color: #bbf7d0; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; margin-bottom: 32px; }
  .hero__title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(36px, 5.5vw, 68px); font-weight: 700; line-height: 1.12; color: #fff; margin-bottom: 24px; }
  .hero__title-accent { color: #86efac; }
  .hero__subtitle { font-size: clamp(16px, 2vw, 20px); color: rgba(255, 255, 255, 0.82); line-height: 1.7; max-width: 620px; margin: 0 auto 40px; }
  .hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
  .hero__trust { display: flex; justify-content: center; gap: 40px; align-items: center; }
  .hero__trust-item { text-align: center; }
  .hero__trust-value { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 700; color: #86efac; }
  .hero__trust-label { font-size: 13px; color: rgba(255, 255, 255, 0.65); margin-top: 2px; }
  .hero__trust-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.2); }

  /* ─── Services ─── */
  .services { background: #fafaf7; }
  .services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .card { background: #fff; border-radius: 16px; padding: 40px 32px; border: 1px solid rgba(22, 101, 52, 0.08); transition: all 0.3s ease; }
  .card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(20, 83, 45, 0.1); border-color: rgba(22, 101, 52, 0.16); }
  .card__icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #f0fdf4, #dcfce7); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
  .card__title { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: #14532d; margin-bottom: 12px; }
  .card__desc { font-size: 15px; color: #4a5a4f; line-height: 1.7; margin-bottom: 20px; }
  .card__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .card__list li { position: relative; padding-left: 20px; font-size: 14px; color: #4a5a4f; }
  .card__list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: #166534; border-radius: 50%; }

  /* ─── About ─── */
  .about { background: #fff; }
  .about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .about__media { position: relative; }
  .about__img-wrapper { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 64px rgba(20, 83, 45, 0.12); }
  .about__img-wrapper img { width: 100%; height: 700px; object-fit: cover; }
  .about__img-secondary { position: absolute; bottom: -32px; right: -32px; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(20, 83, 45, 0.15); border: 4px solid #fff; }
  .about__img-secondary img { width: 400px; height: 300px; object-fit: cover; }
  .about__text { font-size: 16px; color: #4a5a4f; line-height: 1.8; margin-bottom: 20px; }
  .about__values { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
  .about__value { display: flex; gap: 16px; align-items: flex-start; }
  .about__value-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: #f0fdf4; border: 1px solid #dcfce7; display: flex; align-items: center; justify-content: center; }
  .about__value strong { display: block; font-size: 15px; color: #14532d; margin-bottom: 2px; }
  .about__value-desc { font-size: 14px; color: #4a5a4f; line-height: 1.5; }

  /* ─── Benefits ─── */
  .benefits { background: linear-gradient(160deg, #052e16 0%, #14532d 50%, #166534 100%); color: #fff; }
  .benefits .section__eyebrow { color: #86efac; }
  .benefits .section__title { color: #fff; }
  .benefits .section__title .text-forest-700 { color: #86efac; }
  .benefits .section__subtitle { color: rgba(255, 255, 255, 0.7); }
  .benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .benefit { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 36px 28px; transition: all 0.3s ease; }
  .benefit:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(134, 239, 172, 0.3); transform: translateY(-4px); }
  .benefit__number { font-family: 'Playfair Display', Georgia, serif; font-size: 48px; font-weight: 700; color: rgba(134, 239, 172, 0.2); line-height: 1; margin-bottom: 16px; }
  .benefit__title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
  .benefit__text { font-size: 14px; color: rgba(255, 255, 255, 0.65); line-height: 1.7; }

  /* ─── Testimonials ─── */
  .testimonials { background: #f0fdf4; }
  .testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testimonial { background: #fff; border-radius: 16px; padding: 36px 28px; border: 1px solid rgba(22, 101, 52, 0.08); position: relative; transition: all 0.3s ease; }
  .testimonial:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(20, 83, 45, 0.08); }
  .testimonial__quote { position: absolute; top: 20px; right: 24px; }
  .testimonial__text { font-size: 15px; color: #4a5a4f; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
  .testimonial__author { display: flex; align-items: center; gap: 12px; }
  .testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #166534, #22c55e); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
  .testimonial__name { display: block; font-style: normal; font-weight: 700; font-size: 15px; color: #14532d; }
  .testimonial__location { display: block; font-size: 13px; color: #4a5a4f; margin-top: 2px; }

  /* ─── CTA ─── */
  .cta { background: linear-gradient(135deg, #14532d 0%, #166534 100%); padding: 80px 0; }
  .cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
  .cta__content { flex: 1; }
  .cta__eyebrow { color: #86efac !important; }
  .cta__title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
  .cta__text { font-size: 17px; color: rgba(255, 255, 255, 0.75); line-height: 1.7; max-width: 480px; }
  .cta__actions { display: flex; gap: 16px; flex-shrink: 0; }

  /* ─── Contact ─── */
  .contact { background: #fff; }
  .contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
  .contact__text { font-size: 16px; color: #4a5a4f; line-height: 1.7; margin-bottom: 36px; }
  .contact__details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
  .contact__detail { display: flex; gap: 16px; align-items: flex-start; }
  .contact__detail-icon { width: 48px; height: 48px; border-radius: 12px; background: #f0fdf4; border: 1px solid #dcfce7; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact__detail strong { display: block; font-size: 14px; color: #14532d; margin-bottom: 4px; }
  .contact__detail span, .contact__detail a { font-size: 15px; color: #4a5a4f; text-decoration: none; line-height: 1.6; }
  .contact__detail a:hover { color: #166534; }
  .contact__map { border-radius: 12px; overflow: hidden; }

  /* ─── Contact Form ─── */
  .contact__form-wrap { background: #fafaf7; border-radius: 20px; padding: 40px; border: 1px solid rgba(22, 101, 52, 0.08); }
  .contact__form-title { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 700; color: #14532d; margin-bottom: 8px; }
  .contact__form-sub { font-size: 14px; color: #4a5a4f; margin-bottom: 28px; }
  .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form__group { margin-bottom: 20px; }
  .form__label { display: block; font-size: 13px; font-weight: 600; color: #14532d; margin-bottom: 6px; letter-spacing: 0.02em; }
  .form__input { width: 100%; padding: 12px 16px; border: 1.5px solid #eae6de; border-radius: 10px; font-size: 15px; color: #14532d; background: #fff; transition: all 0.2s ease; }
  .form__input:focus { outline: none; border-color: #166534; box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.1); }
  .form__input::placeholder { color: #a8b8ac; }
  .form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23166534' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
  .form__textarea { resize: vertical; min-height: 120px; }
  .form__note { font-size: 12px; color: #8a9a8e; margin-top: 16px; text-align: center; }
  .form__success { text-align: center; padding: 40px 20px; }
  .form__success-icon { color: #166534; margin-bottom: 16px; }
  .form__success-title { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: #14532d; margin-bottom: 8px; }
  .form__success-text { font-size: 15px; color: #4a5a4f; line-height: 1.7; }
  .form__success-text a { color: #166534; font-weight: 600; }

  /* ─── Footer ─── */
  .footer { background: #052e16; color: rgba(255, 255, 255, 0.6); padding: 64px 0 0; }
  .footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .footer__brand { }
  .footer__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; font-size: 15px; font-weight: 700; line-height: 1.25; margin-bottom: 16px; }
  .footer__tagline { font-size: 14px; line-height: 1.7; max-width: 280px; }
  .footer__col { }
  .footer__col strong { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #86efac; margin-bottom: 20px; }
  .footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer__links a { font-size: 14px; color: rgba(255, 255, 255, 0.55); text-decoration: none; transition: color 0.2s; }
  .footer__links a:hover { color: #86efac; }
  .footer__address { font-size: 14px; line-height: 1.8; font-style: normal; }
  .footer__address a { color: rgba(255, 255, 255, 0.55); text-decoration: none; transition: color 0.2s; }
  .footer__address a:hover { color: #86efac; }
  .footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 13px; color: rgba(255, 255, 255, 0.35); flex-wrap: wrap; gap: 12px; }

  /* ─── Scroll Reveal (progressive enhancement) ─── */
  @media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.revealed { opacity: 1; transform: translateY(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
  }

  /* ─── Responsive ─── */
  @media (max-width: 1024px) {
    .services__grid { grid-template-columns: 1fr; }
    .benefits__grid { grid-template-columns: repeat(2, 1fr); }
    .about__grid { gap: 48px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    .section { padding: 72px 0; }
    .nav__links { position: fixed; top: 72px; left: 0; right: 0; background: rgba(250, 250, 247, 0.98); backdrop-filter: blur(16px); flex-direction: column; padding: 32px 24px; gap: 20px; border-bottom: 1px solid rgba(22, 101, 52, 0.08); transform: translateY(-120%); opacity: 0; transition: all 0.35s ease; pointer-events: none; }
    .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav__toggle { display: flex; }
    .hero__content { padding: 100px 20px 60px; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__trust { flex-direction: column; gap: 20px; }
    .hero__trust-divider { width: 40px; height: 1px; }
    .about__grid { grid-template-columns: 1fr; }
    .about__img-secondary { position: relative; bottom: auto; right: auto; margin-top: 16px; }
    .about__img-wrapper img { height: 400px; }
    .about__img-secondary img { width: 100%; height: 240px; }
    .benefits__grid { grid-template-columns: 1fr; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .cta__inner { flex-direction: column; text-align: center; }
    .cta__actions { flex-direction: column; width: 100%; }
    .cta__actions .btn { justify-content: center; }
    .contact__grid { grid-template-columns: 1fr; }
    .contact__form-wrap { padding: 28px; }
    .form__row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; text-align: center; }
  }

  @media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: 32px; }
    .card { padding: 28px 24px; }
  }
