/* ─── Homepage-specific styles ─────────────────────────── */

/* About Teaser */
.about-teaser {
    padding: 100px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}

.about-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    filter: brightness(0.9) contrast(1.05);
}

.about-img-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--gold);
    color: #0e0d0b;
    padding: 14px 20px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.about-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card-img-wrap {
    overflow: hidden;
}

/* Gallery strip */
.gallery-preview {
    padding: 100px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    text-align: center;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 48px;
}

.gallery-strip-item {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    aspect-ratio: 3/4;
}

.gallery-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: brightness(0.85);
}

.gallery-strip-item:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

/* Showcase */
.showcase {
    padding: 100px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.showcase-card {
    position: relative;
    display: block;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
}

.showcase-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform-origin: center;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.45);
}

.showcase-card:hover .showcase-bg {
    transform: scale(1.06);
    filter: brightness(0.55);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 13, 11, 0.95) 0%, rgba(14, 13, 11, 0.1) 60%);
}

.showcase-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 32px;
    z-index: 2;
}

.showcase-text h3 {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    margin-top: 8px;
}

.showcase-text p {
    font-size: 0.88rem;
    color: rgba(232, 224, 208, 0.75);
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Contact CTA */
.contact-cta {
    padding: 100px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    text-align: center;
}

.contact-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-card {
        height: 380px;
    }

    .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-teaser-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-badge {
        right: 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .gallery-strip {
        grid-template-columns: 1fr 1fr;
    }
}