/* --- Container --- */
.section-legacy {
    background-color: #000000; /* Pitch Black to match Brand */
    padding: 80px 0;
    position: relative;
    border-top: 1px solid #222;
}

/* --- Header (Matching THE VANGUARD style) --- */
.legacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.legacy-title {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 900; /* Extra Bold like Vanguard */
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.legacy-line {
    width: 80px;
    height: 4px;
    background: #c5a059; /* Gold Accent */
    margin: 0 auto 20px;
    border-radius: 2px;
}

.legacy-subtitle {
    color: #999;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Grid --- */
.legacy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .legacy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .legacy-grid { grid-template-columns: 1fr; }
}

/* --- Card --- */
.legacy-card {
    display: block;
    text-decoration: none;
    position: relative;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px; /* Rounded corners like your theme */
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.legacy-card:hover {
    border-color: #c5a059;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Image */
.legacy-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.legacy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.legacy-card:hover .legacy-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Overlay & Years */
.legacy-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, #111 0%, transparent 100%);
}

.legacy-years {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #c5a059;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Floating Candle Icon */
.legacy-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c5a059;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    z-index: 2;
}

.legacy-card:hover .legacy-icon {
    opacity: 1;
    transform: translateY(0);
}

/* Info */
.legacy-info {
    padding: 20px 15px;
    text-align: center;
    background: #111;
    border-top: 1px solid #222;
}

.legacy-name {
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 800; /* Bold */
    margin: 0 0 5px 0;
    text-transform: uppercase; /* Matching theme */
}

.legacy-role {
    color: #666;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}