  *, *::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-weight: 300;
    color: #1a2e22;
    background-color: #fafaf6;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ========== HEADER ========== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
    transition: box-shadow 0.3s ease;
  }

  .header.scrolled {
    box-shadow: 0 1px 20px rgba(45, 90, 61, 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;
    text-decoration: none;
    color: #1a2e22;
  }

  .logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #4a6352;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s ease;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2D5A3D;
    transition: width 0.3s ease;
  }

  .nav-link:hover {
    color: #2D5A3D;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #2D5A3D;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
  }

  .nav-cta:hover {
    opacity: 0.7;
  }

  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #1a2e22;
    transition: all 0.3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
  }

  /* ========== MOBILE MENU ========== */
  .mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 246, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 99;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4a6352;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }

  .mobile-nav-link:hover {
    color: #2D5A3D;
  }

  .mobile-nav-phone {
    border-bottom: none;
    margin-top: 8px;
    color: #2D5A3D;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
  }

  /* ========== HERO ========== */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden;
    background: #fafaf6;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45, 90, 61, 0.04) 0%, transparent 70%),
      radial-gradient(ellipse 50% 40% at 20% 80%, rgba(45, 90, 61, 0.03) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .hero-content {
    max-width: 540px;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2D5A3D;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: #2D5A3D;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1a2e22;
    margin-bottom: 24px;
  }

  .hero-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.75;
    color: #4a6352;
    margin-bottom: 40px;
    max-width: 460px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-image {
    position: relative;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 520/640;
    object-fit: cover;
    border-radius: 4px;
    display: block;
  }

  .hero-image::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(45, 90, 61, 0.15);
    border-radius: 4px;
    z-index: -1;
  }

  .hero-trust {
    max-width: 1200px;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .trust-label {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #4a6352;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .trust-divider {
    width: 40px;
    height: 1px;
    background: rgba(45, 90, 61, 0.2);
    margin: 0 20px;
  }

  /* ========== BUTTONS ========== */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .btn-primary {
    background: #2D5A3D;
    color: #fafaf6;
    border-color: #2D5A3D;
  }

  .btn-primary:hover {
    background: #244a31;
    border-color: #244a31;
  }

  .btn-ghost {
    background: transparent;
    color: #2D5A3D;
    border-color: rgba(45, 90, 61, 0.3);
  }

  .btn-ghost:hover {
    border-color: #2D5A3D;
    background: rgba(45, 90, 61, 0.04);
  }

  .btn-light {
    background: #fafaf6;
    color: #2D5A3D;
    border-color: #fafaf6;
  }

  .btn-light:hover {
    background: #f5f5ef;
  }

  .btn-outline-light {
    background: transparent;
    color: #fafaf6;
    border-color: rgba(250, 250, 246, 0.5);
  }

  .btn-outline-light:hover {
    background: rgba(250, 250, 246, 0.1);
    border-color: #fafaf6;
  }

  .btn-full {
    width: 100%;
    justify-content: center;
  }

  /* ========== SECTION HEADERS ========== */
  .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2D5A3D;
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a2e22;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: #4a6352;
    line-height: 1.7;
  }

  /* ========== SERVICES ========== */
  .services {
    padding: 100px 24px;
    background: #fafaf6;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .service-card {
    padding: 40px 32px;
    background: #fff;
    border: 1px solid rgba(45, 90, 61, 0.08);
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .service-card:hover {
    border-color: rgba(45, 90, 61, 0.2);
    box-shadow: 0 8px 40px rgba(45, 90, 61, 0.06);
    transform: translateY(-2px);
  }

  .service-icon {
    margin-bottom: 24px;
  }

  .service-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a2e22;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }

  .service-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    color: #4a6352;
    line-height: 1.75;
  }

  /* ========== ABOUT ========== */
  .about {
    padding: 100px 24px;
    background: #f2f7f3;
  }

  .about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-images {
    position: relative;
  }

  .about-img-main {
    border-radius: 4px;
    overflow: hidden;
  }

  .about-img-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 480/560;
    object-fit: cover;
    display: block;
  }

  .about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    border-radius: 4px;
    overflow: hidden;
    border: 4px solid #f2f7f3;
  }

  .about-img-secondary img {
    width: 100%;
    height: auto;
    aspect-ratio: 320/240;
    object-fit: cover;
    display: block;
  }

  .about-content {
    max-width: 480px;
  }

  .about-body {
    font-size: 1rem;
    font-weight: 300;
    color: #4a6352;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .about-stats {
    display: flex;
    gap: 32px;
    margin: 40px 0;
    padding: 32px 0;
    border-top: 1px solid rgba(45, 90, 61, 0.12);
    border-bottom: 1px solid rgba(45, 90, 61, 0.12);
  }

  .stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2D5A3D;
  }

  .stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4a6352;
  }

  .stat-divider {
    width: 1px;
    background: rgba(45, 90, 61, 0.15);
    align-self: stretch;
  }

  /* ========== GALLERY ========== */
  .gallery {
    padding: 100px 24px;
    background: #fafaf6;
  }

  .gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .gallery-item {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3/2;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(6) {
    aspect-ratio: 4/5;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.04);
  }

  /* ========== TESTIMONIALS ========== */
  .testimonials {
    padding: 100px 24px;
    background: #f2f7f3;
  }

  .testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    background: #fff;
    padding: 40px 32px;
    border-radius: 4px;
    border: 1px solid rgba(45, 90, 61, 0.06);
    position: relative;
  }

  .testimonial-quote {
    position: absolute;
    top: 24px;
    right: 28px;
  }

  .testimonial-text {
    font-size: 1rem;
    font-weight: 300;
    color: #4a6352;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
  }

  .testimonial-author {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1a2e22;
    letter-spacing: 0.04em;
  }

  /* ========== CTA ========== */
  .cta {
    padding: 100px 24px;
    background: #2D5A3D;
    position: relative;
    overflow: hidden;
  }

  .cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(148, 190, 142, 0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .cta-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #94be8e;
    margin-bottom: 16px;
  }

  .cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fafaf6;
    margin-bottom: 20px;
  }

  .cta-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(250, 250, 246, 0.7);
    line-height: 1.75;
    margin-bottom: 40px;
  }

  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ========== CONTACT ========== */
  .contact {
    padding: 100px 24px;
    background: #fafaf6;
  }

  .contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-desc {
    font-size: 1rem;
    font-weight: 300;
    color: #4a6352;
    line-height: 1.75;
    margin-bottom: 40px;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .contact-item {
    display: flex;
    gap: 16px;
  }

  .contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(45, 90, 61, 0.15);
    border-radius: 50%;
  }

  .contact-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2D5A3D;
    margin-bottom: 4px;
  }

  .contact-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #1a2e22;
    line-height: 1.6;
  }

  .contact-link {
    color: #1a2e22;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .contact-link:hover {
    color: #2D5A3D;
  }

  .contact-form-wrap {
    background: #fff;
    padding: 48px;
    border-radius: 4px;
    border: 1px solid rgba(45, 90, 61, 0.08);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4a6352;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: #1a2e22;
    background: #fafaf6;
    border: 1px solid rgba(45, 90, 61, 0.15);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: #2D5A3D;
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.08);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #9aa89e;
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-group select {
    cursor: pointer;
    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='%234a6352' 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 16px center;
    padding-right: 40px;
  }

  .form-success {
    display: none;
    padding: 16px 20px;
    background: #f2f7f3;
    border: 1px solid rgba(45, 90, 61, 0.15);
    border-radius: 2px;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #2D5A3D;
    margin-top: 16px;
    text-align: center;
  }

  .form-success.visible {
    display: block;
  }

  /* ========== FOOTER ========== */
  .footer {
    padding: 80px 24px 40px;
    background: #1a2e22;
  }

  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(250, 250, 246, 0.08);
  }

  .logo-light .logo-text {
    color: #fafaf6;
  }

  .footer-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(250, 250, 246, 0.5);
    line-height: 1.75;
    margin-top: 16px;
    max-width: 280px;
  }

  .footer-heading {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94be8e;
    margin-bottom: 20px;
  }

  .footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(250, 250, 246, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .footer-links a:hover {
    color: #fafaf6;
  }

  .footer-contact p {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(250, 250, 246, 0.5);
    line-height: 1.75;
    margin-bottom: 4px;
  }

  .footer-link {
    color: rgba(250, 250, 246, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .footer-link:hover {
    color: #fafaf6;
  }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .footer-bottom p {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(250, 250, 246, 0.3);
  }

  /* ========== ANIMATIONS ========== */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 1024px) {
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .hero-image {
      max-width: 480px;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
      grid-template-columns: 1fr;
      gap: 56px;
    }

    .about-content {
      max-width: 100%;
    }

    .contact-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
  }

  @media (max-width: 768px) {
    .nav, .nav-cta {
      display: none;
    }

    .menu-toggle {
      display: flex;
    }

    .hero {
      padding: 100px 24px 60px;
      min-height: auto;
    }

    .hero-trust {
      flex-wrap: wrap;
      gap: 16px;
      justify-content: flex-start;
    }

    .trust-divider {
      display: none;
    }

    .services-grid {
      grid-template-columns: 1fr;
    }

    .gallery-grid {
      grid-template-columns: 1fr 1fr;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(6) {
      aspect-ratio: 3/2;
    }

    .testimonials-grid {
      grid-template-columns: 1fr;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .contact-form-wrap {
      padding: 32px 24px;
    }

    .about-img-secondary {
      right: -16px;
      bottom: -16px;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .hero-actions {
      flex-direction: column;
    }

    .hero-actions .btn {
      width: 100%;
      justify-content: center;
    }

    .cta-actions {
      flex-direction: column;
      align-items: center;
    }

    .cta-actions .btn {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }

    .gallery-grid {
      grid-template-columns: 1fr;
    }

    .about-stats {
      flex-direction: column;
      gap: 20px;
    }

    .stat-divider {
      width: 40px;
      height: 1px;
      align-self: center;
    }
  }
