/* -------------------------------------
   ABOUT PAGE SPECIFIC
   ------------------------------------- */
body.about-page {
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 80px; /* Nav height */
}

.marquee {
    width: 100%;
    background-color: var(--point-color);
    color: var(--bg-color);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 4px solid var(--text-main);
    border-top: 4px solid var(--text-main);
}

.marquee-content {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    animation: marquee 15s linear infinite;
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.section {
    min-height: 100vh;
    border-bottom: 4px solid var(--text-muted);
    display: flex;
    flex-direction: column;
}

.grid-layout {
    display: flex;
    flex: 1;
    width: 100%;
}

.grid-col {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.border-left { border-left: 4px solid var(--text-muted); }
.border-right { border-right: 4px solid var(--text-muted); }

.section-title {
    font-family: var(--font-display);
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
}

.highlight {
    color: var(--point-color);
}

.body-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-main);
    max-width: 600px;
    margin-bottom: 3rem;
    font-weight: 400;
}

.stats-box {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    border: 2px solid var(--text-muted);
    padding: 2rem;
    flex: 1;
    background: var(--bg-color);
    box-shadow: 6px 6px 0px var(--point-color);
}

.stat h3 {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat p {
    color: var(--point-color);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* Images */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    background-color: var(--bg-color);
    border: 2px solid var(--text-muted);
}

/* Grain overlay */
.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.15"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.5) brightness(0.8);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.image-wrapper:hover .project-img {
    filter: grayscale(0%) contrast(1.2) brightness(1);
    transform: scale(1.02);
}

/* Mission Section */
.mission-section {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem;
    background-color: var(--point-color);
    color: var(--bg-color);
    border-bottom: 4px solid var(--text-main);
}

.huge-text {
    font-family: var(--font-display);
    font-size: 15vw;
    line-height: 0.8;
    color: var(--point-color);
    -webkit-text-stroke: 4px var(--bg-color);
    margin-bottom: 3rem;
    font-weight: 900;
}

.mission-text {
    font-size: 2.5rem;
    max-width: 1000px;
    line-height: 1.3;
    font-weight: 900;
    text-transform: uppercase;
}

.mission-text .highlight {
    color: var(--text-main);
    background: var(--bg-color);
    padding: 0 0.5rem;
}

/* Footer */
.footer {
    padding: 6rem 4rem;
    border-top: 4px solid var(--text-muted);
    background: var(--bg-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    color: var(--point-color);
    line-height: 1;
}

.footer-info p {
    color: var(--text-main);
    font-size: 1rem;
    text-align: right;
    margin-top: 1rem;
    font-family: var(--font-mono);
}

@media (max-width: 1024px) {
    .grid-layout {
        flex-direction: column;
    }
    .grid-layout.reverse {
        flex-direction: column-reverse;
    }
    .border-left, .border-right {
        border: none;
        border-bottom: 4px solid var(--text-muted);
    }
    .grid-col {
        padding: 4rem 2rem;
    }
    .section-title {
        font-size: 3rem;
    }
    .stat h3 {
        font-size: 3rem;
    }
    .mission-text {
        font-size: 1.5rem;
    }
}

