/* ============================================
   FOLKLORE – folklorní landing page
   ============================================ */

/* ---- Folklore hero ---- */
.folklore-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--c-ink);
}

.folklore-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--folklore-hero-img) center/cover no-repeat;
    opacity: 0.55;
}

.folklore-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 2rem;
}

.folklore-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--c-white);
    margin-bottom: 1rem;
}

.folklore-hero-title em {
    font-style: italic;
    font-weight: 400;
    display: block;
    font-size: 0.55em;
    opacity: 0.8;
    margin-top: 0.3em;
}

.folklore-hero .hero-divider {
    background: rgba(255, 255, 255, 0.4);
    margin-left: auto;
    margin-right: auto;
}

.folklore-hero .btn-photo {
    color: var(--c-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.folklore-hero .btn-photo:hover {
    background: var(--c-white);
    border-color: var(--c-white);
    color: var(--c-ink);
}

/* ---- Folklore sections ---- */
.folklore-section {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.folklore-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--c-ink);
}

.folklore-heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--c-steel);
}

.folklore-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--c-steel);
    margin-top: 1.5rem;
}

/* ---- Folklore process steps ---- */
.folklore-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.folklore-step {
    flex: 0 0 auto;
    text-align: center;
    max-width: 200px;
}

.folklore-step-num {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--c-silver);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.folklore-step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--c-charcoal);
    line-height: 1.4;
}

/* ---- Folklore benefits ---- */
.folklore-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.folklore-benefit {
    text-align: center;
}

.folklore-benefit-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 0.5rem;
}

.folklore-benefit-text {
    font-size: 0.9rem;
    color: var(--c-steel);
    line-height: 1.65;
}

/* ---- Folklore CTA ---- */
.folklore-cta {
    background: var(--c-snow);
    padding: 5rem 2rem;
    text-align: center;
}

/* ---- Folklore photo gallery (fullwidth strip) ---- */
.folklore-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.folklore-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .folklore-hero {
        min-height: 65vh;
    }

    .folklore-benefits {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .folklore-hero {
        min-height: 55vh;
    }

    .folklore-gallery {
        grid-template-columns: 1fr;
    }

    .folklore-gallery img {
        aspect-ratio: 16 / 9;
    }

    .folklore-section {
        padding: 3rem 1.5rem;
    }

    .folklore-cta {
        padding: 3rem 1.5rem;
    }

    .folklore-steps {
        gap: 1.5rem 2rem;
    }
}
