body { font-family: 'Inter', sans-serif; }
.serif { font-family: 'Playfair Display', serif; }

/* Offset for sticky header anchors */
section { scroll-margin-top: 5rem; }

/* Logo Strip Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}
.logo-gradient {
    background: linear-gradient(90deg, white, transparent 15%, transparent 85%, white);
    pointer-events: none;
}

/* Prevent background scroll when menu is open */
.no-scroll { overflow: hidden; height: 100vh; }
