/* ── HERO ── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.88) 0%, rgba(13, 13, 13, 0.25) 45%, rgba(13, 13, 13, 0.15) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 2.5rem 3rem;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: #F2EFE9;
}

.hero-name em {
    font-style: italic;
    color: rgba(242, 239, 233, 0.55);
    display: block;
    font-size: 0.6em;
    margin-bottom: 0.3em;
}

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

.hero-caption {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(242, 239, 233, 0.35);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #C8935A;
    border: 0.5px solid #C8935A;
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    background: none;
    font-family: 'DM Mono', monospace;
}

.hero-cta:hover {
    background: #C8935A;
    color: #0D0D0D;
}

.slide-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 20px;
    height: 1px;
    background: rgba(242, 239, 233, 0.25);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

.dot.active {
    background: #C8935A;
    width: 36px;
}

/* ── MARQUEE ── */
.marquee-wrap {
    overflow: hidden;
    border-top: 0.5px solid rgba(242, 239, 233, 0.08);
    border-bottom: 0.5px solid rgba(242, 239, 233, 0.08);
    padding: 0.9rem 0;
    background: #0D0D0D;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(242, 239, 233, 0.2);
}

.marquee-track span {
    flex-shrink: 0;
}

.marquee-track .sep {
    color: #C8935A;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── ABOUT STRIP ── */
.about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 0.5px solid rgba(242, 239, 233, 0.08);
}

.about-left {
    padding: 4rem 2.5rem;
    border-right: 0.5px solid rgba(242, 239, 233, 0.08);
}

.about-right {
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-label {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C8935A;
    margin-bottom: 1.5rem;
}

.about-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: #F2EFE9;
    margin-bottom: 1.5rem;
}

.about-heading em {
    font-style: italic;
    color: rgba(242, 239, 233, 0.5);
}

.about-body {
    font-size: 12px;
    line-height: 1.9;
    color: rgba(242, 239, 233, 0.45);
    max-width: 38ch;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: #F2EFE9;
    line-height: 1;
}

.stat-num em {
    font-style: italic;
    font-size: 1.4rem;
    color: #C8935A;
}

.stat-label {
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(242, 239, 233, 0.3);
    margin-top: 4px;
}

/* ── SELECTED WORK ── */
.work-section {
    padding: 4rem 0;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 2.5rem 2rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
}

.view-all {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(242, 239, 233, 0.35);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

.view-all:hover {
    color: #C8935A;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 3px;
    padding: 0 3px;
}

.featured-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.featured-item.tall {
    grid-row: span 2;
}

.featured-item.big {
    grid-column: span 2;
    grid-row: span 2;
}

.featured-item.wide {
    grid-column: span 2;
}


.feat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.8) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
}

.featured-item:hover .feat-overlay {
    opacity: 1;
}

.feat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
}

.feat-cat {
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(242, 239, 233, 0.45);
    margin-top: 3px;
}

/* ── CATEGORIES ── */
.categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 0.5px solid rgba(242, 239, 233, 0.08);
}

.cat-item {
    padding: 2rem 1.5rem;
    border-right: 0.5px solid rgba(242, 239, 233, 0.08);
    cursor: pointer;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
}

.cat-item:last-child {
    border-right: none;
}

.cat-item:hover {
    background: rgba(242, 239, 233, 0.03);
}

.cat-item:hover .cat-arrow {
    color: #C8935A;
}

.cat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: rgba(242, 239, 233, 0.12);
    margin-bottom: 0.8rem;
}

.cat-name {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(242, 239, 233, 0.6);
    margin-bottom: 0.4rem;
}

.cat-count {
    font-size: 9px;
    color: rgba(242, 239, 233, 0.25);
}

.cat-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: rgba(242, 239, 233, 0.15);
    font-size: 16px;
    transition: color 0.25s;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 0 1.5rem 3rem;
    }

    .hero-right {
        text-align: left;
    }

    .about-strip {
        grid-template-columns: 1fr;
    }

    .about-left {
        border-right: none;
        border-bottom: 0.5px solid rgba(242, 239, 233, 0.08);
    }

    .about-heading {
        font-size: 2.2rem;
    }

    .featured-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Reset spans for mobile */
    .featured-item.big,
    .featured-item.wide,
    .featured-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .categories {
        grid-template-columns: 1fr 1fr;
    }

    .section-header {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .categories {
        grid-template-columns: 1fr;
    }

    .cat-item {
        border-right: none;
        border-bottom: 0.5px solid rgba(242, 239, 233, 0.08);
    }
}

