/* Background Lines System - 32c5f0dd */

/* Global typography inspired by akzidenzgrotesk.pro */
body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Helvetica Neue', 'Arial', 'Akzidenz-Grotesk', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #000000;
}

a {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #000000;
}

a:hover {
    opacity: 0.6;
}

/* Background lines container */
.bg-lines-container-32c5f0dd {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-lines-inner-32c5f0dd {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5vw;
    box-sizing: border-box;
}

.bg-line-32c5f0dd {
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.07);
    flex-shrink: 0;
}

/* Responsive line count adjustments handled by JS,
   but we ensure smooth transitions */
.bg-lines-inner-32c5f0dd {
    transition: padding 0.3s ease;
}

/* Smaller screens get tighter padding */
@media (max-width: 768px) {
    .bg-lines-inner-32c5f0dd {
        padding: 0 4vw;
    }
}

@media (max-width: 480px) {
    .bg-lines-inner-32c5f0dd {
        padding: 0 3vw;
    }
}
