/* Lookbook 2 — staggered editorial grid */

.lookbook-2 {
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    color: #000;
    background: #fff;
}

.lookbook-2 .content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100vh;
}

.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -2;
}

/* Centered header — logo + brand text at top */
.lookbook-2 .lookbook-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-self: flex-start; /* prevent flex stretch bugs with sticky */
    width: 100%;
    flex: 0 0 auto;
    text-align: center;
    padding: 32px 8px 40px;
    gap: 16px;
    box-sizing: border-box;
}

.lookbook-2 .header-logo-link {
    display: block;
    line-height: 0;
    position: relative;
    flex: 0 0 auto;
    align-self: center;
}

.lookbook-2 .header-logo-stack {
    position: relative;
    display: block;
    width: fit-content;
    height: 32px; /* layout box = monogram; burst paints outside */
    margin: 0 auto;
    z-index: 0;
}

.lookbook-2 .header-burst {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 96px;
    width: auto;
    max-width: none;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.lookbook-2 .header-logo {
    position: relative;
    z-index: 2;
    height: 32px;
    width: auto;
    display: block;
}

.lookbook-2 .header-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    align-self: center;
    gap: 4px;
}

.lookbook-2 .header-text p {
    font-family: 'Courier Prime', monospace;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.28px;
    line-height: 1.0;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

@media (min-width: 768px) {
    .lookbook-2 .lookbook-header {
        padding: 48px 24px 56px;
        gap: 18px;
    }

    .lookbook-2 .header-logo-stack {
        height: 36px;
    }

    .lookbook-2 .header-logo {
        height: 36px;
    }

    .lookbook-2 .header-burst {
        height: 108px;
    }
}

@media (min-width: 1200px) {
    .lookbook-2 .header-logo-stack {
        height: 40px;
    }

    .lookbook-2 .header-logo {
        height: 40px;
    }

    .lookbook-2 .header-burst {
        height: 120px;
    }
}

/* Fixed Email Button — same position, dark styling for white page */
.lookbook-2 .fixed-pricing-button {
    position: fixed;
    bottom: 48px;
    left: 48px;
    z-index: 10;
}

.lookbook-2 .fixed-pricing-button .nav-link {
    color: #000;
    border-color: rgba(0, 0, 0, 0.3);
    background: #fff;
}

.lookbook-2 .fixed-pricing-button .nav-link:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

@media (max-width: 768px) {
    .lookbook-2 .fixed-pricing-button {
        bottom: 24px;
        left: 16px;
        padding-left: 0;
    }
}

/* Content area — mobile-first 8px margins */
.lookbook-2 .lookbook-content {
    flex: 1;
    padding: 0 8px 120px;
    display: flex;
    justify-content: center;
}

/* Two-column staggered grid */
.lookbook-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    align-items: start;
}

.grid-item {
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Only three ratios on this page */
.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-3-4 { aspect-ratio: 3 / 4; }
.ratio-4-3 { aspect-ratio: 4 / 3; }

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Placement */
.item-left {
    grid-column: 1;
}

.item-right {
    grid-column: 2;
}

.item-full {
    grid-column: 1 / -1;
}

/* Staggered entrance */
.grid-item:nth-child(1)  { animation-delay: 0.05s; }
.grid-item:nth-child(2)  { animation-delay: 0.10s; }
.grid-item:nth-child(3)  { animation-delay: 0.15s; }
.grid-item:nth-child(4)  { animation-delay: 0.20s; }
.grid-item:nth-child(5)  { animation-delay: 0.25s; }
.grid-item:nth-child(6)  { animation-delay: 0.30s; }
.grid-item:nth-child(7)  { animation-delay: 0.35s; }
.grid-item:nth-child(8)  { animation-delay: 0.40s; }
.grid-item:nth-child(9)  { animation-delay: 0.45s; }
.grid-item:nth-child(10) { animation-delay: 0.50s; }
.grid-item:nth-child(11) { animation-delay: 0.55s; }
.grid-item:nth-child(12) { animation-delay: 0.60s; }
.grid-item:nth-child(13) { animation-delay: 0.65s; }
.grid-item:nth-child(14) { animation-delay: 0.70s; }
.grid-item:nth-child(15) { animation-delay: 0.75s; }
.grid-item:nth-child(16) { animation-delay: 0.80s; }
.grid-item:nth-child(17) { animation-delay: 0.85s; }
.grid-item:nth-child(18) { animation-delay: 0.90s; }
.grid-item:nth-child(19) { animation-delay: 0.95s; }
.grid-item:nth-child(20) { animation-delay: 1.00s; }
.grid-item:nth-child(21) { animation-delay: 1.05s; }
.grid-item:nth-child(22) { animation-delay: 1.10s; }
.grid-item:nth-child(23) { animation-delay: 1.15s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet — keep 8px gutters, widen side margins slightly */
@media (min-width: 768px) {
    .lookbook-2 .lookbook-content {
        padding: 0 24px 140px;
    }

    .lookbook-grid {
        max-width: 720px;
        gap: 8px;
    }
}

/* Desktop — scale composition, preserve 8px gutters */
@media (min-width: 1024px) {
    .lookbook-2 .lookbook-content {
        padding: 0 48px 160px;
    }

    .lookbook-grid {
        max-width: 960px;
        gap: 8px;
    }
}

@media (min-width: 1400px) {
    .lookbook-grid {
        max-width: 1100px;
    }
}
