/* lunar.quest — Street art mural at sunset */
/* Colors: #1A1816, #2A2724, #3D3835, #D4847A, #FF6B35, #FF8C6B, #FFB347, #FFD700 */
/* Fonts: Commissioner, Inter, Lora */

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #2A2724;
    color: #D4847A;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Noise texture */
.noise-texture {
    position: absolute;
    width: 0;
    height: 0;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    opacity: 0.04;
    filter: url(#noise);
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
}

/* Spray bursts */
.spray-burst {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* Z-Layout */
.z-layout {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 24px;
}

.z-module {
    position: relative;
    margin-bottom: 80px;
}

.z-row {
    display: flex;
    align-items: flex-start;
}

.z-content {
    flex: 1;
    padding: 20px;
}

.z-spacer {
    flex: 0.6;
    position: relative;
}

.z-left {
    text-align: left;
}

.z-right {
    text-align: right;
}

/* Diagonal */
.z-diagonal {
    padding: 20px 0;
    position: relative;
}

.diagonal-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #FFB347, transparent);
    transform: rotate(-3deg);
    transform-origin: left center;
    opacity: 0.3;
}

/* Typography */
.headline {
    font-family: 'Commissioner', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    color: #FF6B35;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.4);
    line-height: 0.95;
    position: relative;
    display: inline-block;
}

.headline-drip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 15%;
    width: 2px;
    height: 16px;
    background: linear-gradient(to bottom, #FF6B35, transparent);
    opacity: 0.5;
}

.headline-secondary {
    font-family: 'Commissioner', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-transform: uppercase;
    color: #FFB347;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
    line-height: 1;
    position: relative;
    display: inline-block;
}

.headline-secondary.headline-drip::after {
    height: 12px;
    background: linear-gradient(to bottom, #FFB347, transparent);
}

.subline {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: #D4847A;
    text-transform: uppercase;
    margin-top: 12px;
}

.body-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    line-height: 1.8;
    color: #D4847A;
    margin-top: 16px;
}

.quote-text {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.6;
    color: #FF8C6B;
}

.quote-attr {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    color: #3D3835;
    letter-spacing: 0.06em;
    display: block;
    margin-top: 8px;
    text-transform: uppercase;
}

.italic-text {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.7;
    color: #FFD700;
    opacity: 0.7;
}

/* Swatches */
.swatch-row {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.swatch-block {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: flex-end;
    padding: 4px;
}

.swatch-block span {
    font-family: 'Inter', sans-serif;
    font-size: 0.45rem;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}

/* Scroll animations */
.z-content {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.z-left {
    transform: translateX(-30px);
}

.z-right {
    transform: translateX(30px);
}

.z-content.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
    .z-row {
        flex-direction: column;
    }

    .z-spacer {
        display: none;
    }

    .z-content {
        text-align: left !important;
    }

    .swatch-row {
        justify-content: flex-start;
    }

    .headline {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
}
