:root {
    --black: #080808;
    --black-soft: #141414;
    --gold: #ffc400;
    --gold-dark: #d9a600;
    --white: #ffffff;
    --off-white: #f6f6f2;
    --grey: #666666;
    --line: #d8d8d0;
    --focus: #ffe07a;
    --content-width: 860px;
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
}

body {
    margin: 0;
    color: var(--black);
    background: var(--off-white);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    font-synthesis: none;
    line-height: 1.65;
    -webkit-font-smoothing: auto;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-underline-offset: 3px;
}

a:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.site-header {
    color: var(--white);
    background: #000000;
    border-bottom: 1px solid rgba(255, 196, 0, 0.34);
}

.header-inner,
.footer-inner {
    width: min(calc(100% - 36px), var(--max-width));
    margin-inline: auto;
}

.page {
    width: min(calc(100% - 36px), var(--content-width));
    margin-inline: auto;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 850;
    text-decoration: none;
}

.brand-logo-frame {
    position: relative;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 50%;
    background: #000000;
}

.brand-logo-frame img {
    position: absolute;
    inset: -1px;
    width: calc(100% + 2px);
    max-width: none;
    height: calc(100% + 2px);
    object-fit: cover;
}

.back-link {
    color: var(--gold);
    font-weight: 800;
}

.page-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.page-nav a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
    text-decoration: none;
}

.page-nav a:hover,
.page-nav a:focus-visible,
.page-nav a[aria-current="page"] {
    color: var(--gold);
}

.page {
    padding-block: 54px 68px;
}

.page h1,
.page h2 {
    line-height: 1.15;
    letter-spacing: 0;
}

.page h1 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.page h2 {
    margin: 34px 0 8px;
    font-size: 1.3rem;
}

.page p,
.page li {
    color: var(--grey);
}

.page ul {
    padding-left: 22px;
}

.intro {
    max-width: 720px;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.updated {
    color: var(--grey);
    font-size: 0.9rem;
}

.notice {
    padding: 18px;
    color: var(--black);
    background: #fff7d6;
    border: 1px solid #e0b600;
    border-radius: 0;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 12px 20px;
    color: var(--black);
    background: var(--gold);
    border: 1px solid var(--gold-dark);
    border-radius: 0;
    font-weight: 850;
    text-decoration: none;
}

.success-page,
.error-page {
    min-height: calc(100vh - 148px);
    display: grid;
    align-content: center;
}

.services-page {
    width: min(calc(100% - 36px), var(--max-width));
}

.services-page > .intro {
    max-width: 760px;
}

.pricing-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-block: 34px 46px;
    color: var(--white);
    background: var(--black);
    border-top: 4px solid var(--gold);
}

.pricing-item {
    min-width: 0;
    padding: 20px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.pricing-item:last-child {
    border-right: 0;
}

.pricing-item strong,
.pricing-item span {
    display: block;
}

.pricing-item strong {
    color: var(--gold);
    font-size: 1.12rem;
}

.pricing-item span {
    margin-top: 3px;
    color: #c7c7c7;
    font-size: 0.9rem;
}

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

.service-detail {
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
}

.service-code {
    width: 48px;
    height: 40px;
    display: grid;
    margin-bottom: 16px;
    place-items: center;
    color: var(--black);
    background: var(--gold);
    border: 1px solid var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
}

.service-detail h3 {
    margin: 0 0 12px;
    font-size: 1.24rem;
}

.service-detail ul {
    margin: 0;
    padding-left: 20px;
}

.service-detail li + li {
    margin-top: 5px;
}

.extras-section {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 34px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.extras-grid li {
    position: relative;
    padding: 14px 14px 14px 24px;
    border-bottom: 1px solid var(--line);
}

.extras-grid li::before {
    position: absolute;
    top: 20px;
    left: 3px;
    width: 8px;
    height: 8px;
    content: "";
    background: var(--gold);
}

.service-area-section {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
}

.service-area-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.service-area-heading h2,
.service-area-heading p {
    margin: 0;
}

.service-area-heading p {
    margin-top: 6px;
}

.service-area-summary {
    min-width: 340px;
    display: grid;
    gap: 5px;
    padding: 13px 16px;
    color: var(--white);
    background: var(--black);
    border-left: 4px solid var(--gold);
    font-size: 0.9rem;
}

.service-area-summary span,
.service-area-summary strong {
    color: inherit;
}

.service-map-shell {
    position: relative;
    margin-top: 24px;
    overflow: hidden;
    background: #d7d7d2;
    border: 1px solid var(--line);
    border-top: 4px solid var(--gold);
}

.service-map {
    width: 100%;
    height: 520px;
    background: #d7d7d2;
}

.map-loading {
    min-height: 100%;
    display: grid;
    margin: 0;
    place-items: center;
    color: var(--grey);
}

.service-map-legend {
    position: absolute;
    z-index: 500;
    top: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 12px 14px;
    color: var(--white);
    background: rgba(8, 8, 8, 0.94);
    border: 1px solid rgba(255, 196, 0, 0.72);
    font-size: 0.8rem;
    font-weight: 750;
    pointer-events: none;
}

.service-map-legend span {
    display: flex;
    align-items: center;
    gap: 9px;
}

.zone-swatch {
    width: 22px;
    height: 14px;
    flex: 0 0 auto;
    border-radius: 50%;
}

.zone-one {
    background: rgba(255, 196, 0, 0.34);
    border: 3px solid var(--gold);
}

.zone-two {
    background: rgba(255, 255, 255, 0.12);
    border: 2px dashed var(--white);
}

.service-area-note {
    max-width: 820px;
    margin: 14px 0 0;
    font-size: 0.9rem;
}

.service-map .leaflet-control-zoom,
.service-map .leaflet-control-zoom a,
.service-map .leaflet-tooltip {
    border-radius: 0;
}

.service-map .leaflet-control-zoom a {
    color: var(--black);
}

.service-map .leaflet-control-attribution {
    color: #333333;
    background: rgba(255, 255, 255, 0.92);
}

.service-map .leaflet-control-attribution a {
    color: #1d4f85;
}

.service-map .map-city-label {
    padding: 5px 8px;
    color: var(--white);
    background: var(--black);
    border: 1px solid var(--gold);
    box-shadow: none;
    font-weight: 800;
}

.service-map .map-city-label::before {
    border-top-color: var(--gold);
}

.service-note {
    margin-top: 38px;
    padding: 20px 22px;
    color: #d7d7d7;
    background: var(--black-soft);
    border-left: 4px solid var(--gold);
}

.service-note strong {
    color: var(--white);
}

.services-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.services-cta h2,
.services-cta p {
    margin: 0;
}

.services-cta p {
    margin-top: 5px;
}

.services-cta .button {
    flex: 0 0 auto;
    margin: 0;
}

.site-footer {
    padding-block: 24px;
    color: #aaaaaa;
    background: #030303;
}

.footer-inner {
    font-size: 0.86rem;
}

.footer-inner p {
    margin: 0;
}

@media (max-width: 560px) {
    .header-inner,
    .page,
    .footer-inner {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .header-inner {
        min-height: 68px;
    }

    .brand-name {
        display: none;
    }

    .page {
        padding-block: 42px 54px;
    }

    .page-nav {
        gap: 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 820px) {
    .pricing-band,
    .service-groups {
        grid-template-columns: 1fr;
    }

    .pricing-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .pricing-item:last-child {
        border-bottom: 0;
    }

    .service-groups {
        gap: 14px;
    }

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

    .service-area-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .service-area-summary {
        min-width: 0;
        width: 100%;
    }

    .service-map {
        height: 440px;
    }

    .services-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .services-cta .button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .service-map {
        height: 390px;
    }

    .service-map-legend {
        top: 10px;
        right: 10px;
        padding: 9px 10px;
        font-size: 0.72rem;
    }
}
