/* =========================================
   LCA-LANDING.CSS — Landing Page (index.html)
   ========================================= */

/* --- HERO --- */
.hero {
    margin: 0 auto;
    width: 85%;
    position: relative;
}
.hero .lb-trigger img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    padding: 60px 40px 30px 40px;
    pointer-events: none;
}
.hero-tagline {
    font-size: 32px;
    font-style: italic;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    max-width: 500px;
}
.hero-caption {
    position: absolute;
    bottom: 12px;
    right: 24px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    pointer-events: none;
}

/* --- FEATURED STORY --- */
.featured {
    display: flex;
    gap: 36px;
    padding: 0 0 30px 0;
}
.featured-photo {
    flex: 0 0 58%;
    min-width: 0;
}
.featured-photo .lb-trigger img {
    width: 100%;
    height: auto;
}
.featured-photo figcaption {
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #444;
    padding: 8px 0 0 0;
    line-height: 1.5;
}
.featured-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-dateline {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #444;
    margin: 0 0 12px 0;
}
.featured-headline {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 14px 0;
}
.featured-excerpt {
    text-align: justify;
    margin: 0 0 16px 0;
    line-height: 1.6;
}
.featured-link {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
}
.featured-link:hover { text-decoration: underline; color: #CC0000; }

/* --- COLLECTION CARDS --- */
.collections-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 20px;
    padding: 0 0 30px 0;
}
.collection-card {
    text-decoration: none;
    color: #000;
    display: block;
}
.collection-card:visited { color: #000; }
.collection-card:hover .card-label { color: #CC0000; }
.collection-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.card-label {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    display: block;
    margin-top: 8px;
    line-height: 1.5;
}
.card-meta {
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
    display: block;
    margin-top: 2px;
}

/* --- MOBILE --- */
@media (max-width: 700px) {
    .hero-overlay { padding: 40px 20px 20px 20px; }
    .hero-tagline { font-size: 22px; }
    .hero-overlay { padding: 40px 20px 20px 20px; }
    .hero-caption { right: 14px; bottom: 8px; }
    .featured { flex-direction: column; gap: 20px; }
    .featured-photo { flex: none; }
    .featured-headline { font-size: 28px; }
    .collections-row { grid-template-columns: 1fr; }
    .collection-card img { height: 200px; }
}
