:root {
    --ad-red: #a9232e;
    --ad-red-dark: #7e1721;
    --ad-ink: #161616;
    --ad-charcoal: #242424;
    --ad-muted: #66615f;
    --ad-line: #ded9d6;
    --ad-soft: #f5f3f2;
    --ad-white: #ffffff;
}

.ad-local-page,
.ad-local-page * {
    box-sizing: border-box;
    letter-spacing: 0;
}

.ad-local-page {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: clip;
    color: var(--ad-ink);
    background: var(--ad-white);
    font-size: 17px;
    line-height: 1.7;
}

.ad-local-page a {
    color: var(--ad-red);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.ad-local-page h1,
.ad-local-page h2,
.ad-local-page h3 {
    margin-top: 0;
    color: var(--ad-ink);
    font-family: inherit;
    font-weight: 700;
    line-height: 1.14;
}

.ad-local-page h1 {
    max-width: 880px;
    margin-bottom: 22px;
    color: var(--ad-white);
    font-size: 52px;
}

.ad-local-page h2 {
    margin-bottom: 22px;
    font-size: 36px;
}

.ad-local-page h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.ad-local-page p {
    margin: 0 0 18px;
}

.ad-inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.ad-hero {
    position: relative;
    display: flex;
    min-height: 66vh;
    align-items: center;
    background-color: #333333;
}

.ad-hero::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.92) 0%, rgba(15, 15, 15, 0.68) 58%, rgba(15, 15, 15, 0.3) 100%);
    content: '';
}

.ad-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ad-hero__content {
    position: relative;
    z-index: 2;
    max-width: 840px;
    padding: 84px 0 72px;
}

.ad-eyebrow {
    margin-bottom: 16px;
    color: #f4c7ca;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.ad-hero__lead {
    max-width: 760px;
    margin-bottom: 30px !important;
    color: #f4f2f1;
    font-size: 20px;
}

.ad-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ad-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid var(--ad-red);
    border-radius: 6px;
    background: var(--ad-red);
    color: var(--ad-white) !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background-color 160ms ease, border-color 160ms ease;
}

.ad-button:hover,
.ad-button:focus-visible {
    border-color: var(--ad-red-dark);
    background: var(--ad-red-dark);
}

.ad-button--ghost {
    border-color: rgba(255, 255, 255, 0.65);
    background: transparent;
}

.ad-button--ghost:hover,
.ad-button--ghost:focus-visible {
    border-color: var(--ad-white);
    background: rgba(255, 255, 255, 0.1);
}

.ad-trust {
    background: var(--ad-charcoal);
    color: var(--ad-white);
}

.ad-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.ad-trust__item {
    min-width: 0;
    padding: 24px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
}

.ad-trust__item:last-child {
    border-right: 0;
}

.ad-trust__item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 19px;
}

.ad-trust__item span {
    color: #d8d3d0;
    font-size: 14px;
}

.ad-section {
    padding: 80px 0;
}

.ad-section--soft {
    background: var(--ad-soft);
}

.ad-section--dark {
    background: var(--ad-ink);
    color: #eeeeee;
}

.ad-section--dark h2,
.ad-section--dark h3 {
    color: var(--ad-white);
}

.ad-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 72px;
    align-items: start;
}

.ad-intro__label {
    color: var(--ad-red);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.ad-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ad-service {
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--ad-line);
    border-radius: 6px;
    background: var(--ad-white);
}

.ad-service p:last-child {
    margin-bottom: 0;
}

.ad-text-link {
    font-weight: 700;
}

.ad-local-links {
    margin-top: 48px;
    padding-top: 42px;
    border-top: 1px solid var(--ad-line);
}

.ad-related {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.ad-related__item {
    display: block;
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--ad-line);
    border-radius: 6px;
    background: var(--ad-white);
    color: var(--ad-ink) !important;
    text-decoration: none !important;
    transition: border-color 160ms ease, transform 160ms ease;
}

.ad-related__item:hover,
.ad-related__item:focus-visible {
    border-color: var(--ad-red);
    transform: translateY(-2px);
}

.ad-related__item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ad-ink);
    font-size: 18px;
    line-height: 1.25;
}

.ad-related__item span {
    color: var(--ad-red);
    font-weight: 700;
}

.ad-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px;
    align-items: start;
}

.ad-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ad-list li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 24px;
}

.ad-list li::before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ad-red);
    content: '';
}

.ad-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    counter-reset: ad-step;
}

.ad-step {
    min-width: 0;
    padding: 26px 26px 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    counter-increment: ad-step;
}

.ad-step::before {
    display: block;
    margin-bottom: 20px;
    color: #e35b66;
    content: '0' counter(ad-step);
    font-size: 15px;
    font-weight: 700;
}

.ad-step p {
    color: #ccc7c4;
}

.ad-faq {
    max-width: 900px;
}

.ad-faq details {
    border-bottom: 1px solid var(--ad-line);
}

.ad-faq summary {
    padding: 22px 40px 22px 0;
    color: var(--ad-ink);
    cursor: pointer;
    font-size: 19px;
    font-weight: 700;
}

.ad-faq details p {
    max-width: 780px;
    padding: 0 0 20px;
    color: var(--ad-muted);
}

.ad-cta {
    background-color: #241517;
    background-image: linear-gradient(90deg, rgba(28, 13, 15, 0.96), rgba(52, 16, 21, 0.86)), var(--ad-cta-image);
    background-position: center;
    background-size: cover;
}

.ad-cta__content {
    max-width: 780px;
}

.ad-cta p {
    color: #e9e4e1;
}

.ad-contact-line {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 22px;
}

.ad-contact-line a {
    color: var(--ad-white);
    font-weight: 700;
}

.ad-cookie {
    position: fixed;
    z-index: 9999;
    right: 18px;
    bottom: 18px;
    display: grid;
    width: min(420px, calc(100vw - 36px));
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: #171717;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
    color: var(--ad-white);
    font-size: 14px;
    line-height: 1.45;
}

.ad-cookie[hidden] {
    display: none;
}

.ad-cookie p {
    margin: 0;
}

.ad-cookie__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ad-cookie button {
    min-height: 42px;
    padding: 10px 15px;
    border: 1px solid var(--ad-red);
    border-radius: 6px;
    background: var(--ad-red);
    color: var(--ad-white);
    cursor: pointer;
    font-weight: 700;
}

.ad-cookie button:last-child {
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent;
}

.ad-advice-post {
    max-width: 880px;
    margin: 0 auto;
}

.ad-advice-post h2 {
    margin-top: 38px;
}

.ad-advice-post ul {
    margin-bottom: 26px;
}

.ad-answer-box {
    margin: 0 0 34px;
    padding: 24px;
    border-left: 5px solid var(--ad-red);
    border-radius: 6px;
    background: var(--ad-soft);
}

.ad-answer-box strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ad-red);
    font-size: 15px;
    text-transform: uppercase;
}

.ad-answer-box p {
    margin: 0;
    color: var(--ad-ink);
    font-size: 18px;
    line-height: 1.6;
}

.ad-advice-faq details {
    border-bottom: 1px solid var(--ad-line);
}

.ad-advice-faq summary {
    padding: 18px 0;
    cursor: pointer;
    font-weight: 700;
}

.ad-advice-faq p {
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .ad-local-page h1 {
        font-size: 44px;
    }

    .ad-trust__grid,
    .ad-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ad-trust__item:nth-child(2) {
        border-right: 0;
    }

    .ad-intro,
    .ad-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .ad-local-page {
        font-size: 16px;
    }

    .ad-inner {
        width: min(100% - 32px, 1180px);
    }

    .ad-hero {
        min-height: 68vh;
    }

    .ad-hero__media {
        object-position: 62% center;
    }

    .ad-hero__content {
        padding: 64px 0 54px;
    }

    .ad-local-page h1 {
        font-size: 36px;
    }

    .ad-local-page h2 {
        font-size: 29px;
    }

    .ad-hero__lead {
        font-size: 18px;
    }

    .ad-section {
        padding: 58px 0;
    }

    .ad-services,
    .ad-related,
    .ad-trust__grid,
    .ad-process {
        grid-template-columns: 1fr;
    }

    .ad-service {
        padding: 23px;
    }

    .ad-trust__item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .ad-trust__item:last-child {
        border-bottom: 0;
    }

    .ad-button {
        width: 100%;
    }

    .ad-answer-box {
        padding: 20px;
    }
}
