/* Pages locales tapis */

.local-tapis-page {
    background: #f8f5ef;
    color: #1f1a14;
}

.local-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #111;
}

.local-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.local-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.2)
    );
    z-index: 1;
}

.local-hero__content {
    position: relative;
    z-index: 2;
    width: min(1120px, 92%);
    color: #fff;
}

.local-hero__badge {
    display: inline-flex;
    padding: 9px 16px;
    border: 1px solid rgba(212, 169, 106, 0.6);
    border-radius: 999px;
    color: #d4a96a;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.local-hero h1 {
    max-width: 850px;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.05;
    margin: 0 0 20px;
    font-family: Georgia, serif;
}

.local-hero__location {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.local-hero__cta,
.local-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    background: #b8864e;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.25s ease;
}

.local-hero__cta:hover,
.local-cta__button:hover {
    background: #d4a96a;
    color: #1f1a14;
}

.local-content {
    padding: 70px 0;
}

.local-content__container {
    width: min(980px, 92%);
    margin: 0 auto;
    background: #fff;
    padding: clamp(28px, 5vw, 60px);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.local-content h2 {
    font-family: Georgia, serif;
    font-size: clamp(28px, 4vw, 42px);
    margin: 45px 0 16px;
    color: #1e1610;
}

.local-content h2:first-child {
    margin-top: 0;
}

.local-content h3 {
    font-size: 22px;
    margin: 26px 0 12px;
    color: #7a5529;
}

.local-content p,
.local-content li {
    font-size: 17px;
    line-height: 1.75;
    color: #3b332b;
}

.local-content a {
    color: #9a672e;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.local-cta {
    padding: 40px 0 90px;
}

.local-cta__box {
    width: min(980px, 92%);
    margin: 0 auto;
    padding: clamp(32px, 5vw, 60px);
    border-radius: 30px;
    background: #1e1610;
    color: #fff;
    text-align: center;
}

.local-cta__box h2 {
    font-family: Georgia, serif;
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 15px;
}

.local-cta__box p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .local-hero {
        min-height: 470px;
        text-align: left;
    }

    .local-content {
        padding: 35px 0;
    }

    .local-content__container {
        padding: 26px 20px;
        border-radius: 20px;
    }

    .local-content h2 {
        font-size: 28px;
    }

    .local-content h3 {
        font-size: 20px;
    }

    .local-content p,
    .local-content li {
        font-size: 16px;
    }
}