  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --emerald: #065f46;
    --emerald-light: #047857;
    --emerald-dark: #044734;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --cream-dark: #d4c5a9;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    color: var(--text);
    background: var(--cream-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
  }

  a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

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

  /* ── NAV ── */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    transition: background var(--transition), box-shadow var(--transition);
  }

  .nav.scrolled {
    background: rgba(250, 247, 242, 0.95);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--emerald);
  }

  .logo span {
    letter-spacing: -0.01em;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.01em;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--emerald);
    transition: width var(--transition);
  }

  .nav-links a:hover {
    color: var(--emerald);
  }

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

  .nav-cta {
    background: var(--emerald);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background var(--transition), transform var(--transition);
  }

  .nav-cta::after {
    display: none;
  }

  .nav-cta:hover {
    background: var(--emerald-light);
    color: var(--white) !important;
    transform: translateY(-1px);
  }

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

  .nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: var(--transition);
    transform-origin: center;
  }

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

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

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
  }

  .hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #044734 0%, #065f46 30%, #047857 60%, #059669 100%);
    z-index: 0;
  }

  .hero-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 20% 80%, rgba(4, 71, 52, 0.8) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 80% 20%, rgba(5, 150, 105, 0.4) 0%, transparent 50%),
      radial-gradient(ellipse 40% 40% at 50% 50%, rgba(212, 197, 169, 0.08) 0%, transparent 70%);
  }

  .hero-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--cream-light), transparent);
  }

  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
  }

  .hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-dark);
    margin-bottom: 24px;
  }

  .hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 28px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(245, 240, 232, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    letter-spacing: 0.01em;
  }

  .btn-primary {
    background: var(--cream);
    color: var(--emerald);
  }

  .btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  }

  .btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(212, 197, 169, 0.4);
  }

  .btn-ghost:hover {
    border-color: var(--cream);
    color: var(--white);
    transform: translateY(-2px);
  }

  .btn-ghost-light {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .btn-ghost-light:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
  }

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

  .hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.7);
    font-weight: 400;
  }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(245, 240, 232, 0.5);
    animation: scrollBounce 2s ease-in-out infinite;
  }

  @keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  /* ── SECTIONS ── */
  .section {
    padding: 100px 0;
  }

  .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 16px;
  }

  .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }

  .section-sub {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.8;
  }

  /* ── SERVICES ── */
  .services {
    background: var(--cream-light);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    border: 1px solid rgba(6, 95, 70, 0.06);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(6, 95, 70, 0.08);
    border-color: rgba(6, 95, 70, 0.12);
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(6, 95, 70, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background var(--transition);
  }

  .service-card:hover .service-icon {
    background: rgba(6, 95, 70, 0.1);
  }

  .service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
    letter-spacing: -0.01em;
  }

  .service-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ── WHY ── */
  .why {
    background: var(--white);
  }

  .why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-image {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 6/7;
  }

  .why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .why-image:hover img {
    transform: scale(1.03);
  }

  .why-content {
    padding: 20px 0;
  }

  .why-content .section-sub {
    margin-bottom: 48px;
  }

  .why-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .why-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }

  .why-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--emerald);
    opacity: 0.4;
    padding-top: 2px;
  }

  .why-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
  }

  .why-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ── GALLERY ── */
  .gallery {
    background: var(--cream-light);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 5/3.8;
    position: relative;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 95, 70, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity var(--transition);
  }

  .gallery-item:hover::after {
    opacity: 1;
  }

  /* ── TESTIMONIALS ── */
  .testimonials {
    background: var(--white);
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    background: var(--cream-light);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    border: 1px solid rgba(6, 95, 70, 0.05);
    transition: all var(--transition);
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(6, 95, 70, 0.06);
  }

  .testimonial-quote {
    margin-bottom: 20px;
  }

  .testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
  }

  .testimonial-author {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--emerald);
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: linear-gradient(135deg, #044734 0%, #065f46 50%, #047857 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 197, 169, 0.08) 0%, transparent 60%);
  }

  .cta-banner .container {
    position: relative;
    z-index: 1;
  }

  .cta-banner h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }

  .cta-banner p {
    font-size: 1.0625rem;
    color: rgba(245, 240, 232, 0.8);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
  }

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

  /* ── CONTACT ── */
  .contact {
    background: var(--cream-light);
  }

  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-info {
    padding: 20px 0;
  }

  .contact-info .section-sub {
    margin-bottom: 48px;
  }

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

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-detail svg {
    flex-shrink: 0;
    margin-top: 2px;
  }

  .contact-detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }

  .contact-detail span,
  .contact-detail a {
    font-size: 1rem;
    color: var(--text);
    font-weight: 400;
  }

  .contact-detail a:hover {
    color: var(--emerald);
  }

  .contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    border: 1px solid rgba(6, 95, 70, 0.06);
  }

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

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

  .form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(6, 95, 70, 0.15);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text);
    background: var(--cream-light);
    transition: all var(--transition);
    outline: none;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.08);
  }

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

  .form-group 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='%237a7a7a' 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;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(6, 95, 70, 0.06);
    border-radius: var(--radius-sm);
    margin-top: 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--emerald);
  }

  .form-success.show {
    display: flex;
  }

  /* ── FOOTER ── */
  .footer {
    background: var(--text);
    color: rgba(245, 240, 232, 0.6);
    padding: 72px 0 0;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  }

  .footer-brand p {
    margin-top: 16px;
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
  }

  .footer-brand .logo {
    color: var(--cream);
  }

  .footer-links h4,
  .footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-dark);
    margin-bottom: 20px;
  }

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

  .footer-links a {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.5);
  }

  .footer-links a:hover {
    color: var(--cream);
  }

  .footer-contact p {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 4px;
  }

  .footer-contact a {
    color: rgba(245, 240, 232, 0.6);
  }

  .footer-contact a:hover {
    color: var(--cream);
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.35);
  }

  .footer-bottom a {
    color: rgba(245, 240, 232, 0.35);
  }

  .footer-bottom a:hover {
    color: var(--cream);
  }

  /* ── ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .why-layout {
      gap: 48px;
    }

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

    .testimonials-grid .testimonial-card:last-child {
      grid-column: 1 / -1;
      max-width: 50%;
      justify-self: center;
    }

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

    .footer-brand {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      background: rgba(250, 247, 242, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 32px 24px;
      gap: 24px;
      border-bottom: 1px solid rgba(6, 95, 70, 0.08);
      transform: translateY(-120%);
      opacity: 0;
      transition: all var(--transition);
      pointer-events: none;
    }

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

    .nav-toggle {
      display: flex;
    }

    .hero {
      padding: 100px 24px 80px;
    }

    .hero-headline {
      font-size: clamp(1.625rem, 6vw, 2.5rem);
    }

    .hero-actions {
      flex-direction: column;
      gap: 12px;
    }

    .hero-trust {
      gap: 20px;
    }

    .section {
      padding: 72px 0;
    }

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

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

    .why-image {
      aspect-ratio: 4/3;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
      max-width: 100%;
    }

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

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

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

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

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

    .cta-banner {
      padding: 64px 0;
    }
  }

  @media (max-width: 480px) {
    .container {
      padding: 0 20px;
    }

    .hero {
      padding: 90px 20px 70px;
    }

    .section {
      padding: 60px 0;
    }

    .service-card {
      padding: 32px 24px;
    }

    .hero-trust {
      flex-direction: column;
      gap: 12px;
    }
  }
