.home-hero {
    display: grid;
    grid-template-columns: minmax(340px, 44%) minmax(0, 56%);
    min-height: clamp(520px, 66vh, 660px);
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.home-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(40px, 5.5vw, 88px) clamp(24px, 4.5vw, 68px);
    background: #ffffff;
    color: var(--color-ink);
}

.home-hero--light .home-hero-copy {
    background: #ffffff;
    color: var(--color-ink);
}

.home-kicker {
    margin: 0 0 18px;
    color: var(--color-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.home-hero--light .home-kicker {
    color: rgba(255, 255, 255, 0.64);
}

.home-hero h1 {
    max-width: 12ch;
    margin: 0;
    color: inherit;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5.5vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.96;
    text-transform: uppercase;
}

.home-hero-description {
    max-width: 28ch;
    margin: 24px 0 0;
    color: #555;
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.5;
}

.home-hero--light .home-hero-description {
    color: rgba(255, 255, 255, 0.78);
}

.home-hero-specs {
    margin: 12px 0 0;
    color: #777;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home-hero--light .home-hero-specs {
    color: rgba(255, 255, 255, 0.6);
}

.home-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 48px;
    margin-top: 34px;
    padding: 0 22px;
    border: 1px solid var(--color-ink);
    background: var(--color-ink);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.home-hero--light .home-hero-cta {
    border-color: #fff;
    background: #fff;
    color: #111;
}

.home-hero-cta:hover {
    background: transparent;
    color: var(--color-ink);
}

.home-hero--light .home-hero-cta:hover {
    color: #fff;
}

.home-hero-media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #f4f3ef;
}

.home-hero-media picture {
    position: absolute;
    inset: 0;
}

.home-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-desktop-focal, center 20%);
}

/* Streetwear Continuous Marquee Ticker */
.streetwear-ticker {
    width: 100%;
    overflow: hidden;
    background: #111;
    color: #fff;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    user-select: none;
}

.streetwear-ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: streetwearTickerScroll 28s linear infinite;
}

.streetwear-ticker-track:hover {
    animation-play-state: paused;
}

.streetwear-ticker-track span {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.streetwear-ticker-track .ticker-dot {
    margin: 0 16px;
    opacity: 0.45;
    font-size: 1rem;
    line-height: 1;
}

@keyframes streetwearTickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.home-main,
.home-search-results {
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: 0 clamp(16px, 4.5vw, 72px);
}

.home-search-results {
    min-height: 60vh;
    padding-top: clamp(48px, 7vw, 96px);
    padding-bottom: clamp(64px, 9vw, 120px);
}

.home-section {
    padding: clamp(28px, 4vw, 48px) 0;
    border-bottom: 1px solid var(--color-border);
}

.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.home-section-head h1,
.home-section-head h2 {
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    font-weight: 850;
    letter-spacing: -0.045em;
    line-height: 1;
}

.home-text-link {
    color: var(--color-ink);
    font-size: 0.88rem;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
}

.home-text-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Topic Filter Pills */
.home-topic-pills-wrap {
    margin: 0 0 26px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.home-topic-pills-wrap::-webkit-scrollbar {
    display: none;
}

.home-topic-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    padding: 2px 0;
}

.topic-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: #444;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.18s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.topic-pill:hover {
    border-color: #111;
    color: #111;
}

.topic-pill.is-active {
    background: #111;
    border-color: #111;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2.2vw, 30px);
}

.home-collections {
    background: #fff;
}

.home-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--color-ink);
}

.home-collection-card {
    position: relative;
    display: grid;
    min-height: 210px;
    padding: 28px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-ink);
    text-decoration: none;
    transition: background-color var(--transition-fast);
}

.home-collection-card:nth-child(3n) {
    border-right: 0;
}

.home-collection-card:hover {
    background: #f4f3ef;
}

.home-collection-index {
    color: var(--color-muted);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
}

.home-collection-card strong {
    align-self: end;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    letter-spacing: -0.035em;
}

.home-collection-card > span:not(.home-collection-index) {
    margin-top: 8px;
    color: #555;
    font-size: 0.92rem;
    line-height: 1.4;
}

.home-collection-card small {
    margin-top: 18px;
    color: var(--color-muted);
}

.home-material {
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: 520px;
    margin: clamp(32px, 4.5vw, 54px) 0;
    background: #fbfbfa;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md, 8px);
    overflow: hidden;
}

.home-material-media {
    position: relative;
    min-width: 0;
    background: #f0ede6;
    overflow: hidden;
}

.home-material-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-material:hover .home-material-media img {
    transform: scale(1.02);
}

.home-material-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(17, 17, 17, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.home-material-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(28px, 4vw, 50px);
}

.home-material-copy h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.home-material-intro {
    max-width: 44ch;
    margin: 12px 0 20px;
    color: #555;
    font-size: 0.92rem;
    line-height: 1.5;
}

.home-anatomy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
    margin-bottom: 24px;
}

.anatomy-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-left: 3px solid #111;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.anatomy-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.anatomy-num {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    color: #999;
    line-height: 1;
    flex-shrink: 0;
}

.anatomy-box strong {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    line-height: 1.3;
}

.anatomy-box p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #666;
}

.home-material-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.home-material-note {
    font-size: 0.8rem;
    color: #777;
    font-weight: 500;
}

.home-sale {
    border-bottom: 0;
}

.home-empty-state {
    padding: 64px 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .home-hero {
        grid-template-columns: 42% 58%;
    }

    .home-hero-copy {
        padding: 44px 32px;
    }

    .home-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 48px;
    }
}

@media (max-width: 767px) {
    .home-hero {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 0 0 24px;
        background: #ffffff;
        gap: 0;
    }

    .home-hero-media {
        order: 1;
        position: relative;
        width: 100%;
        min-height: 0;
        height: auto;
        max-height: 480px;
        aspect-ratio: 4 / 5;
        border-radius: 0;
        overflow: hidden;
        background: #f4f3ef;
    }

    .home-hero-media picture,
    .home-hero-media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: var(--hero-mobile-focal, center 15%);
    }

    .home-hero-copy {
        order: 2;
        min-height: auto;
        padding: 24px 20px 8px;
        background: #ffffff;
    }

    .home-hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .home-hero-description {
        margin-top: 10px;
        font-size: 0.95rem;
    }

    .home-hero-specs {
        margin-top: 8px;
        font-size: 0.78rem;
    }

    .home-hero-cta {
        margin-top: 18px;
        width: 100%;
        justify-content: center;
    }

    .home-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 10px;
    }
}

@media (max-width: 360px) {
    .home-product-grid {
        gap: 12px 8px;
    }
}

@media (max-width: 767px) {

    .home-main,
    .home-search-results {
        padding-right: 16px;
        padding-left: 16px;
    }

    .home-section {
        padding: 32px 0;
    }

    .home-section-head {
        align-items: flex-end;
        margin-bottom: 18px;
    }

    .home-material {
        grid-template-columns: 1fr;
        min-height: 0;
        margin: 28px 0;
    }

    .home-material-media {
        min-height: 260px;
        max-height: 340px;
    }

    .home-material-copy {
        padding: 28px 18px 32px;
    }

    .home-anatomy-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .anatomy-box {
        padding: 12px 14px;
    }

    .home-section-head h1,
    .home-section-head h2 {
        font-size: 2rem;
    }

    .home-product-grid--swipe {
        display: flex;
        gap: 12px;
        margin-right: -16px;
        padding-right: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home-product-grid--swipe::-webkit-scrollbar {
        display: none;
    }

    .home-product-grid--swipe > * {
        flex: 0 0 min(76vw, 290px);
        scroll-snap-align: start;
    }

    .home-collection-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-collection-card,
    .home-collection-card:nth-child(3n) {
        min-height: 170px;
        padding: 20px;
        border-right: 1px solid var(--color-border);
    }

    .home-collection-card:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 359px) {
    .home-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .home-collection-grid {
        grid-template-columns: 1fr;
    }

    .home-collection-card,
    .home-collection-card:nth-child(2n),
    .home-collection-card:nth-child(3n) {
        border-right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-cta,
    .home-collection-card {
        transition: none;
    }

    .streetwear-ticker-track {
        animation: none;
    }
}
