@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100;9..40,200;9..40,300;9..40,400;9..40,500&family=Inter:wght@400;500;600;700;800&display=swap');
    body { 
      font-family: 'Inter', sans-serif; 
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    .font-dm { font-family: 'DM Sans', sans-serif; }
    .swiss-tracking { letter-spacing: -0.04em; }
    
    /* Reveal Animation Classes */
    .reveal-item {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-item.is-revealed {
      opacity: 1;
      transform: translateY(0);
    }

    .no-scrollbar::-webkit-scrollbar {
      display: none;
    }
    .no-scrollbar {
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }

    /* Mobile footer social divider */
    .footer-social-divider {
      display: inline-block;
      width: 1px;
      height: 10px;
      background-color: #a1a1aa; /* zinc-400 */
      margin: 0 4px;
      vertical-align: middle;
    }

    /* Mobile footer: two-column two-row layout */
    .footer-mobile {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding-top: 16px;
      padding-bottom: 16px;
      border-top: 1px solid #d4d4d8;
    }
    .footer-mobile .footer-left,
    .footer-mobile .footer-right {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .footer-mobile .footer-right {
      align-items: flex-end;
    }
    @media (min-width: 768px) {
      .footer-mobile {
        display: none;
      }
    }

    /* Fixed sidebar layout for desktop project pages */
    @media (min-width: 768px) {
      .project-layout {
        display: flex;
        align-items: flex-start;
        padding-top: 8rem;
        padding-bottom: 0;
        padding-left: 2rem;
        padding-right: 2rem;
      }
      .project-sidebar {
        position: sticky;
        top: 8rem;
        width: 280px;
        flex-shrink: 0;
        margin-right: 10px;
      }
      .project-images-col {
        flex: 1;
        min-width: 0;
      }
    }
