body.local-seo-page {
    background: var(--col-bg);
}

.local-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    color: #fdfcf8;
    position: relative;
    overflow: hidden;
}

.local-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(26, 46, 39, 0.82), rgba(26, 46, 39, 0.48)),
        var(--local-hero-image);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.local-hero .container {
    position: relative;
    z-index: 1;
    max-width: 980px;
}

.local-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--col-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.local-hero h1 {
    color: #fff;
    max-width: 820px;
    margin-bottom: 22px;
}

.local-hero p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 690px;
    font-size: 1.15rem;
}

.local-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.local-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.78);
    color: #fff;
}

.local-actions .btn-outline:hover {
    background: #fff;
    color: var(--col-primary);
}

.local-band {
    background: #fff;
}

.local-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.local-card {
    background: #fff;
    border: 1px solid rgba(31, 59, 50, 0.1);
    border-radius: 8px;
    padding: 30px;
    min-height: 100%;
}

.local-card i {
    color: var(--col-secondary);
    margin-bottom: 18px;
}

.local-card h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.local-card p {
    font-size: 0.98rem;
    margin-bottom: 0;
}

.local-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.local-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.local-list i {
    color: var(--col-secondary);
    flex: 0 0 auto;
    margin-top: 3px;
}

.local-faq {
    border-top: 1px solid rgba(31, 59, 50, 0.1);
}

.local-faq details {
    border-bottom: 1px solid rgba(31, 59, 50, 0.1);
    padding: 22px 0;
}

.local-faq summary {
    cursor: pointer;
    color: var(--col-primary);
    font-family: var(--font-head);
    font-size: 1.28rem;
    list-style: none;
}

.local-faq summary::-webkit-details-marker {
    display: none;
}

.local-faq p {
    margin: 14px 0 0;
}

.local-map-note {
    background: var(--col-bg-alt);
    border-left: 3px solid var(--col-secondary);
    padding: 24px;
}

@media (max-width: 768px) {
    .local-hero {
        min-height: 68vh;
        padding: 120px 0 70px;
    }

    .local-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .local-actions .btn {
        width: 100%;
    }
}
