:root {
    --ash-grey: #F2E8D1;
    /* Crema càlid, fons principal */
    --muted-turquoise: #3DA0AB;
    /* Teal matisat */
    --terracota: #B22222;
    /* Rojo colorado, accent principal */
    --fluor-orange: #B22222;
    /* Rojo colorado — detalls */
    --accent-dark: #8B0000;
    /* Rojo fosc */
    --neutral-dark: #1C1A17;
    /* Negre càlid */
    --steel: #5A5046;
    /* Bru fosc estructural */
}
.noise-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 100;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
.brutalist-nav-item {
    flex: 1 1 0%;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-width: 4px;
    border-color: #000000;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    background-color: transparent;
}
.brutalist-nav-item:hover {
    background-color: #B22222;
    color: white;
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 1);
}
.riso-effect {
    filter: contrast(180%) brightness(95%) grayscale(1);
    mix-blend-mode: multiply;
}
.ink-bleed {
    filter: url(#inkBleedFilter);
}
.liquid-text {
    filter: url(#refinedLiquidFilter);
    display: inline-block;
}
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    border-top: 4px solid black;
}
.accent-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #B22222;
    display: inline-block;
    border-radius: 9999px;
    margin-right: 0.5rem;
}
.logo-la {
    writing-mode: vertical-rl;
    text-orientation: upright;
    line-height: 0.8;
}
.sticker-label {
    background-color: #B22222;
    color: #F2E8D1;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
    font-family: "Archivo Narrow", sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    transform: rotate(-2deg);
}
/* Custom Cursor Elements */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: #B22222;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s;
}
#custom-cursor.hovering-link {
    width: 60px;
    height: 60px;
    background-color: #B22222;
}
#custom-cursor.hovering-image {
    width: 80px;
    height: 80px;
    background-color: #3DA0AB;
    mix-blend-mode: normal;
}
.cursor-text-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: black;
    opacity: 0;
    text-transform: uppercase;
    transition: opacity 0.3s;
    pointer-events: none;
}
#custom-cursor.hovering-image .cursor-text-indicator {
    opacity: 1;
}
body.cursor-none {
    cursor: none;
}
a,
button,
.cursor-pointer,
.cursor-crosshair {
    cursor: none;
    /* override default cursors */
}
/* Utility for GSAP Reveals */
.reveal-element,
.reveal-text-line {
    visibility: hidden;
}
/* Utility for text truncation with ellipsis */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Marquee Animation for Radio */
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.animate-marquee {
    animation: marquee 15s linear infinite;
    display: inline-block;
    padding-left: 100%;
    /* Start off-screen right */
}
/* Adding brutalist box shadow utility */
.box-shadow-brutalist {
    box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 1);
}