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

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

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

  /* ── NAV ── */
  header {
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  }

  .nav-link {
    position: relative;
  }

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

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

  /* ── HERO BUTTONS ── */
  .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .hero-btn-primary {
    background: #064e3b;
    color: #fdf8f0;
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.35);
  }

  .hero-btn-primary:hover {
    background: #042f23;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(6, 78, 59, 0.4);
  }

  .hero-btn-secondary {
    background: transparent;
    color: #064e3b;
    border: 2px solid #064e3b;
  }

  .hero-btn-secondary:hover {
    background: #064e3b;
    color: #fdf8f0;
    transform: translateY(-2px);
  }

  /* ── FLOATING CARDS ── */
  @keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(1deg); }
  }

  @keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
  }

  @keyframes float3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
  }

  @keyframes float4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
  }

  .card-float-1 { animation: float1 4s ease-in-out infinite; }
  .card-float-2 { animation: float2 5s ease-in-out infinite 0.5s; }
  .card-float-3 { animation: float3 4.5s ease-in-out infinite 1s; }
  .card-float-4 { animation: float4 5.5s ease-in-out infinite 0.3s; }

  /* ── SERVICE CARDS ── */
  .service-card {
    background: rgba(253, 248, 240, 0.06);
    border: 1px solid rgba(253, 248, 240, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
  }

  .service-card:hover {
    background: rgba(253, 248, 240, 0.1);
    border-color: rgba(217, 249, 157, 0.3);
    transform: translateY(-6px);
  }

  /* ── GALLERY ── */
  .gallery-item {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s ease;
  }

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

  .gallery-item img {
    transition: transform 0.5s ease;
  }

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

  /* ── CTA BUTTONS ── */
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #042f23;
    color: #fdf8f0;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(4, 47, 35, 0.3);
  }

  .cta-btn:hover {
    background: #064e3b;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(4, 47, 35, 0.4);
  }

  .cta-btn-outline {
    background: transparent;
    color: #042f23;
    border: 2px solid #042f23;
    box-shadow: none;
  }

  .cta-btn-outline:hover {
    background: #042f23;
    color: #fdf8f0;
  }

  /* ── FORM ── */
  .form-submit {
    position: relative;
    overflow: hidden;
  }

  .form-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(253, 248, 240, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
  }

  .form-submit:active::after {
    width: 300px;
    height: 300px;
  }

  /* ── MOBILE MENU ── */
  #mobile-menu {
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mobile-link {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: color 0.2s ease;
  }

  .mobile-link:hover {
    color: #064e3b;
  }

  /* ── SCROLL REVEAL ── */
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .font-display {
      font-size: clamp(2rem, 8vw, 3rem);
    }

    h1 {
      font-size: clamp(2.5rem, 10vw, 4rem) !important;
    }
  }
