/**
 * Archetype Wear by City Section
 * Fashion listing organized by travel destination
 */

.archetype-wear-section {
    background: #060e18;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

/* Hero Image */
.archetype-wear-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.archetype-wear-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.archetype-wear-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(2, 11, 19, 0.3) 0%,
        rgba(2, 11, 19, 0.5) 50%,
        rgba(2, 11, 19, 0.7) 100%
    );
    z-index: 2;
}

.archetype-wear-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    z-index: 3;
    text-align: center;
    color: rgba(250, 247, 242, 0.95);
}

.archetype-wear-hero-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sovereign, #D4AF37);
    margin-bottom: 0.75rem;
}

.archetype-wear-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: rgba(250, 247, 242, 0.98);
    margin: 0;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.archetype-wear-inner {
    padding: 4rem 2rem;
}

.archetype-wear-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.archetype-wear-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.archetype-wear-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sovereign, #D4AF37);
    margin-bottom: 0.75rem;
}

.archetype-wear-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: rgba(250, 247, 242, 0.92);
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.archetype-wear-subtitle {
    font-size: 14px;
    color: rgba(250, 247, 242, 0.52);
    margin: 0;
    font-style: italic;
}

/* Grid */
.archetype-wear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* The bottom-grid products already belong to the current archetype,
   so the per-card archetype tag is redundant and covers the image. */
.single-archetype .archetype-wear-grid .product-archetype-tag {
    display: none;
}

/* Footer */
.archetype-wear-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 2px;
}

.archetype-wear-disclosure {
    font-size: 13px;
    color: rgba(250, 247, 242, 0.62);
    text-align: center;
    margin: 0;
    max-width: 600px;
    line-height: 1.6;
}

.archetype-wear-all {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--sovereign, #D4AF37) 0%, #D4AF37 100%);
    border: none;
    border-radius: 0;
    color: #020B13;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.archetype-wear-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.archetype-wear-all:active {
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .archetype-wear-hero {
        height: 400px;
    }

    .archetype-wear-hero-title {
        font-size: 36px;
    }

    .archetype-wear-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .archetype-wear-hero {
        height: 350px;
    }

    .archetype-wear-hero-content {
        padding: 2rem 1.5rem;
    }

    .archetype-wear-hero-title {
        font-size: 28px;
    }

    .archetype-wear-inner {
        padding: 2.5rem 1rem;
    }

    .archetype-wear-header {
        margin-bottom: 2.5rem;
    }

    .archetype-wear-title {
        font-size: 28px;
    }

    .archetype-wear-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }

    .archetype-wear-footer {
        padding: 1.5rem;
    }

    .archetype-wear-disclosure {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .archetype-wear-hero {
        height: 280px;
    }

    .archetype-wear-hero-content {
        padding: 1.5rem 1rem;
    }

    .archetype-wear-hero-title {
        font-size: 22px;
    }

    .archetype-wear-header {
        margin-bottom: 2rem;
    }

    .archetype-wear-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .archetype-wear-title {
        font-size: 22px;
    }

    .archetype-wear-all {
        width: 100%;
        text-align: center;
    }
}
