  /* ── Base & Reset ── */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 80px; }
  body { margin: 0; min-height: 100vh; }
  img { max-width: 100%; height: auto; display: block; }

  /* ── Navigation ── */
  .nav-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: box-shadow 0.3s ease;
  }
  .nav-scrolled.scrolled {
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.08);
  }
  .nav-link { position: relative; }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #059669;
    transition: width 0.3s ease;
  }
  .nav-link:hover::after { width: 100%; }

  /* ── Buttons ── */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.938rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
    background: linear-gradient(135deg, #047857 0%, #065F46 100%);
  }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: #064E3B;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.938rem;
    text-decoration: none;
    border: 2px solid rgba(5, 150, 105, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
  }
  .btn-secondary:hover {
    background: rgba(5, 150, 105, 0.1);
    border-color: #059669;
    transform: translateY(-2px);
  }
  .btn-lg { padding: 1rem 2.25rem; font-size: 1.063rem; }
  .btn-white {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #064E3B;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.063rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  }
  .btn-outline-white {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.063rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
  }
  .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
  }

  /* ── Mobile Nav ── */
  .mobile-nav-link { display: block; padding: 0.5rem 0; }

  /* ── Hero ── */
  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #FDFBF7 0%, #ECFDF5 50%, #F5F0E0 100%);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 240, 224, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  @media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
  }
  .hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: #064E3B;
    margin-bottom: 1.5rem;
  }
  .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4B5563;
    margin-bottom: 2rem;
    max-width: 520px;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
  }
  .hero-image-wrap {
    position: relative;
  }
  .hero-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(6, 78, 59, 0.15);
    position: relative;
    z-index: 1;
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 6/7;
  }
  .hero-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
    z-index: 0;
  }

  /* ── Sections ── */
  .section {
    padding: 96px 0;
  }
  .section-label {
    display: inline-block;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #059669;
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #064E3B;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .section-desc {
    font-size: 1.063rem;
    line-height: 1.75;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
  }

  /* ── Services ── */
  .services-section { background: #fff; }
  .card {
    background: linear-gradient(135deg, #FDFBF7 0%, #FAF6EE 100%);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #059669, #34D399);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(6, 78, 59, 0.1);
    border-color: rgba(16, 185, 129, 0.25);
  }
  .card:hover::before { opacity: 1; }
  .card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
  }
  .card:hover .card-icon {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    transform: scale(1.05);
  }
  .card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #064E3B;
    margin-bottom: 0.75rem;
  }
  .card-desc {
    font-size: 0.938rem;
    line-height: 1.7;
    color: #6B7280;
  }

  /* ── About ── */
  .about-section { background: linear-gradient(180deg, #FDFBF7 0%, #ECFDF5 100%); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  }
  .about-images {
    position: relative;
  }
  .about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(6, 78, 59, 0.12);
  }
  .about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5/6;
  }
  .about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(6, 78, 59, 0.15);
    border: 4px solid #FDFBF7;
  }
  @media (min-width: 640px) {
    .about-img-secondary { width: 55%; }
  }
  .about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/3.5;
  }
  .about-img-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
  }
  .about-text {
    font-size: 1.063rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 1.25rem;
  }
  .about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  @media (max-width: 480px) {
    .about-values { grid-template-columns: 1fr; }
  }
  .about-value {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.938rem;
    color: #374151;
    font-weight: 500;
  }

  /* ── Approach ── */
  .approach-section { background: #fff; }
  .approach-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
  .approach-steps::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #A7F3D0 0%, #059669 50%, #A7F3D0 100%);
    border-radius: 2px;
  }
  @media (min-width: 768px) {
    .approach-steps::before { left: 50%; transform: translateX(-50%); }
  }
  .approach-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
  }
  @media (min-width: 768px) {
    .approach-step:nth-child(odd) { flex-direction: row; }
    .approach-step:nth-child(even) { flex-direction: row-reverse; text-align: right; }
    .approach-step { align-items: flex-start; }
  }
  .approach-step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
    position: relative;
    z-index: 1;
  }
  .approach-step-content {
    flex: 1;
    background: linear-gradient(135deg, #FDFBF7 0%, #FAF6EE 100%);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
  }
  .approach-step-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.188rem;
    font-weight: 600;
    color: #064E3B;
    margin-bottom: 0.5rem;
  }
  .approach-step-desc {
    font-size: 0.938rem;
    line-height: 1.7;
    color: #6B7280;
  }

  /* ── CTA ── */
  .cta-section {
    padding: 96px 0;
    background: linear-gradient(135deg, #064E3B 0%, #047857 50%, #059669 100%);
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
  }
  .cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
  }
  .cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
  }
  .cta-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
  }
  .cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  .cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
  }

  /* ── Contact ── */
  .contact-section { background: linear-gradient(180deg, #ECFDF5 0%, #FDFBF7 100%); }
  .contact-info-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(6, 78, 59, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.08);
  }
  .contact-info-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #064E3B;
    margin-bottom: 1.5rem;
  }
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .contact-info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    flex-shrink: 0;
  }
  .contact-info-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9CA3AF;
    margin-bottom: 0.25rem;
  }
  .contact-info-value {
    display: block;
    font-size: 0.938rem;
    color: #374151;
    font-weight: 500;
  }
  .contact-map {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  }
  .contact-map iframe {
    width: 100%;
    height: 250px;
  }

  /* ── Contact Form ── */
  .contact-form {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(6, 78, 59, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.08);
  }
  .contact-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #064E3B;
    margin-bottom: 1.5rem;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  @media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
  }
  .form-group { margin-bottom: 1.25rem; }
  .form-label {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
  }
  .form-input, .form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    font-size: 0.938rem;
    font-family: inherit;
    color: #374151;
    background: #F9FAFB;
    transition: all 0.3s ease;
    outline: none;
  }
  .form-input:focus, .form-textarea:focus {
    border-color: #059669;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
  }
  .form-input::placeholder, .form-textarea::placeholder {
    color: #9CA3AF;
  }
  .form-textarea { resize: vertical; min-height: 120px; }
  .form-privacy {
    font-size: 0.813rem;
    color: #9CA3AF;
    margin-top: 1rem;
    text-align: center;
  }
  .form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(6, 78, 59, 0.08);
  }

  /* ── Footer ── */
  .footer {
    background: linear-gradient(135deg, #022C22 0%, #064E3B 50%, #047857 100%);
    padding: 64px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  @media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
  }
  .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
  }
  .footer-desc { line-height: 1.7; }
  .footer-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.063rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
  }
  .footer-links { list-style: none; padding: 0; margin: 0; }
  .footer-links li { margin-bottom: 0.625rem; }
  .footer-link {
    color: rgba(253, 251, 247, 0.7);
    text-decoration: none;
    font-size: 0.938rem;
    transition: color 0.3s ease;
  }
  .footer-link:hover { color: #34D399; }
  .footer-contact { list-style: none; padding: 0; margin: 0; }
  .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    font-size: 0.938rem;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
  }

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