/**
 * About Us + Latest Work — creative layout, 1:1 video
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Archivo+Black&family=IBM+Plex+Mono:wght@400;500&display=swap');

.ma-about-section {
    --ma-accent: #d4af37;
    --ma-accent-soft: rgba(212, 175, 55, 0.35);
    --ma-ink: #080808;
    --ma-paper: #f6f3ee;
    --ma-font: 'Inter', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
    background: var(--ma-ink);
    color: var(--ma-paper);
}

.ma-about-inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(4.5rem, 11vh, 7.5rem) clamp(1.25rem, 5vw, 3rem) clamp(2rem, 4vh, 3rem);
}

/* Split layout: square video + editorial copy */
.ma-about-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.ma-about-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Strict 1:1 on every breakpoint — video only, no overlays */
.ma-about-video-shell {
    position: relative;
    width: 100%;
    max-width: min(100%, 520px);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    overflow: hidden;
    background: #111;
}

.ma-about-hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ma-about-content {
    position: relative;
    padding-top: clamp(0.5rem, 2vw, 2rem);
}

.ma-about-eyebrow {
    margin: 0 0 1.25rem;
    font-family: var(--ma-font);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ma-accent);
}

.ma-about-title {
    margin: 0;
    font-family: 'Archivo Black', 'Space Grotesk', system-ui, sans-serif;
    font-size: clamp(1.85rem, 4.2vw, 3.1rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--ma-paper);
    max-width: 16em;
}

.ma-about-lead {
    margin: 1.75rem 0 0;
    font-family: var(--ma-font);
    font-size: clamp(0.92rem, 1.5vw, 1.02rem);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(246, 243, 238, 0.62);
    max-width: 34em;
    padding-left: 1.25rem;
    border-left: 2px solid var(--ma-accent);
}

.ma-about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.ma-about-tags li {
    font-family: var(--ma-font);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ma-ink);
    background: var(--ma-paper);
    padding: 0.5rem 0.85rem;
}

.ma-about-meta {
    margin: 1.5rem 0 0;
    font-family: var(--ma-font);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(246, 243, 238, 0.4);
}

.ma-about-cta-row {
    margin-top: 2rem;
}

/* --- Marquee: split “ticket” band --- */
.ma-latest-work-band {
    display: block;
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: clamp(3.5rem, 7vh, 5rem);
    text-decoration: none;
    color: var(--ma-paper);
    background: var(--ma-paper);
    overflow: hidden;
    outline: none;
    transition: box-shadow 0.5s ease;
}

.ma-latest-work-band:hover,
.ma-latest-work-band:focus-visible {
    box-shadow: 0 -20px 60px rgba(212, 175, 55, 0.2);
}

.ma-latest-work-band__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: stretch;
    min-height: clamp(5.5rem, 12vw, 7.5rem);
    background: var(--ma-ink);
}

.ma-latest-work-band__label {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
    padding: 1.25rem clamp(1.5rem, 4vw, 2.5rem);
    padding-right: 3rem;
    background: var(--ma-accent);
    color: var(--ma-ink);
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
    min-width: clamp(9rem, 22vw, 14rem);
}

.ma-latest-work-band__label-kicker {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
}

.ma-latest-work-band__label-title {
    font-family: 'Archivo Black', 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
}

.ma-latest-work-band__label-arrow {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.35rem;
    font-weight: 600;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.ma-latest-work-band:hover .ma-latest-work-band__label-arrow,
.ma-latest-work-band:focus-visible .ma-latest-work-band__label-arrow {
    transform: translate(5px, calc(-50% - 5px));
}

.ma-latest-work-band__marquee {
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ma-ink);
    border-top: 3px solid var(--ma-accent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.ma-latest-work-band__track {
    display: flex;
    width: max-content;
    animation: ma-latest-marquee 40s linear infinite;
    will-change: transform;
}

.ma-latest-work-band:hover .ma-latest-work-band__track,
.ma-latest-work-band:focus-visible .ma-latest-work-band__track {
    animation-play-state: paused;
}

.ma-latest-work-band__item {
    flex-shrink: 0;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    font-family: 'Archivo Black', 'Inter', sans-serif;
    font-size: clamp(1.15rem, 3.2vw, 2.1rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
    white-space: nowrap;
    line-height: 1.15;
    color: var(--ma-paper);
}

.ma-about-section .u-section-spacer {
    display: none;
}

.ma-about-section.u-section {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 900px) {
    .ma-about-stage {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ma-about-video-shell {
        max-width: min(92vw, 440px);
    }

    .ma-about-title {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .ma-about-inner {
        padding-top: 3.5rem;
    }

    .ma-about-video-shell {
        max-width: 100%;
    }

    .ma-latest-work-band__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ma-latest-work-band__label {
        clip-path: none;
        padding: 1rem 3rem 1rem 1.25rem;
        min-width: 0;
    }

    .ma-latest-work-band__marquee {
        min-height: 4.25rem;
        mask-image: none;
        border-top-width: 2px;
    }

    .ma-latest-work-band__item {
        font-size: 1rem;
        padding: 0 1.25rem;
    }

    .ma-latest-work-band__track {
        animation-duration: 30s;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    .ma-latest-work-band__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        padding: 1.25rem;
        gap: 0.75rem 1.25rem;
    }

    .ma-latest-work-band__item {
        white-space: normal;
        font-size: 0.95rem;
        padding: 0;
    }
}