:root {
    --color-primary: #193D51;
    --color-primary-dark: #071A25;
    --color-accent: #FFC845;
    --color-bg: #F8FAFC;
    --color-surface: #FFFFFF;
    --color-text: #1B1B1B;
    --color-muted: #666666;
    --color-border: #E3E9EF;
    --color-danger: #A02820;
    --space-0: 0;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-7: 2rem;
    --space-8: 2.5rem;
    --space-9: 3rem;
    --space-10: 4rem;
    --space-11: 5rem;
    --space-12: 6rem;
    --space-13: 8rem;
    --shadow-soft: 0 18px 60px rgba(12, 31, 44, 0.12);
    --shadow-card: 0 12px 38px rgba(12, 31, 44, 0.08);
    --shadow-nav: 0 14px 36px rgba(7, 26, 37, 0.18);
    --shadow-lift: 0 22px 54px rgba(12, 31, 44, 0.14);
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    --container: 1180px;
    --container-narrow: 900px;
    --container-wide: 1360px;
    --header-height: 82px;
    --section-space: clamp(var(--space-11), 8vw, var(--space-13));
    --font-heading: "Poppins", "Inter", system-ui, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --fs-body: 1rem;
    --fs-small: 0.88rem;
    --fs-lead: 1.22rem;
    --fs-h1: 5.6rem;
    --fs-h2: 4rem;
    --fs-h3: 1.35rem;
    --fs-hero: 6.2rem;
    --fs-cta: 4.4rem;
    --fs-cta-small: 3.4rem;
    --fs-card-title: 1.85rem;
    --fs-card-title-sm: 1.25rem;
    --fs-stat: 4.8rem;
    --duration-fast: 160ms;
    --duration-base: 220ms;
    --duration-slow: 520ms;
    --ease-standard: cubic-bezier(0.2, 0, 0, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 104px;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

svg {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--color-primary);
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: inherit;
    font-family: var(--font-heading);
    line-height: 1.05;
    letter-spacing: 0;
    text-wrap: balance;
}

h1 {
    max-width: 760px;
    margin-bottom: var(--space-6);
    font-size: var(--fs-h1);
}

h2 {
    margin-bottom: var(--space-5);
    font-size: var(--fs-h2);
}

h3 {
    margin-bottom: var(--space-3);
    font-size: var(--fs-h3);
}

p {
    color: var(--color-muted);
    text-wrap: pretty;
}

ul,
ol {
    margin-top: 0;
}

:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.container--narrow {
    max-width: var(--container-narrow);
}

.container--wide {
    max-width: var(--container-wide);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--color-accent);
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transform: translateY(-140%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.flow > * + * {
    margin-block-start: var(--flow-space, var(--space-5));
}

.stack {
    display: grid;
    gap: var(--stack-space, var(--space-5));
}

.cluster {
    display: flex;
    flex-wrap: wrap;
    gap: var(--cluster-gap, var(--space-4));
    align-items: center;
}

.grid {
    display: grid;
    gap: var(--grid-gap, var(--space-6));
}

.auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--grid-min, 260px)), 1fr));
    gap: var(--grid-gap, var(--space-6));
}

.u-section {
    padding-block: var(--section-space);
}

.u-text-center {
    text-align: center;
}

.u-muted {
    color: var(--color-muted);
}

.u-surface {
    background: var(--color-surface);
}

.u-soft {
    background: var(--color-bg);
}

.u-dark {
    background: var(--color-primary-dark);
    color: var(--color-surface);
}

.u-rounded {
    border-radius: var(--radius-lg);
}

.u-shadow {
    box-shadow: var(--shadow-card);
}

.u-overflow-hidden {
    overflow: hidden;
}

.lift-on-hover {
    transition: transform var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard);
}

.lift-on-hover:hover,
.lift-on-hover:focus-within {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    color: var(--color-surface);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
html.nav-open .site-header {
    color: var(--color-surface);
    background: var(--color-primary-dark);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-nav);
}

.nav-shell {
    position: relative;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    position: relative;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
    transition: color 220ms ease;
}

.brand:hover {
    color: inherit;
}

.brand-mark {
    position: relative;
    display: inline-grid;
    min-width: 62px;
    min-height: 42px;
    place-items: center;
    color: inherit;
    font-size: 2rem;
    letter-spacing: 0;
}

.brand-mark::after {
    content: "";
    position: absolute;
    right: 3px;
    top: 6px;
    width: 40px;
    height: 12px;
    border-top: 3px solid var(--color-accent);
    border-radius: 50%;
}

.brand-copy {
    display: grid;
    gap: 3px;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 0;
}

.brand-copy small {
    color: var(--color-accent);
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 800;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 28px;
    color: inherit;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
}

.primary-nav a {
    position: relative;
    color: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 160ms ease, opacity 160ms ease;
}

.primary-nav a:hover {
    color: inherit;
    opacity: 0.82;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-header:not(.is-scrolled) .nav-actions .btn--secondary {
    color: var(--color-surface);
    border-color: rgba(255, 255, 255, 0.82);
}

.site-header:not(.is-scrolled) .nav-actions .btn--secondary:hover,
.site-header.is-scrolled .nav-actions .btn--secondary:hover {
    background: var(--color-surface);
    border-color: var(--color-surface);
    color: var(--color-primary-dark);
}

.site-header.is-scrolled .nav-actions .btn--secondary {
    color: var(--color-surface);
    border-color: rgba(255, 255, 255, 0.82);
}

html.nav-open .nav-panel .nav-actions .btn--secondary {
    color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

html.nav-open .nav-panel .nav-actions .btn--secondary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-surface);
}

.nav-actions,
.cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 800;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: transform var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard), background-color var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn--small {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.88rem;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-text);
    box-shadow: 0 12px 26px rgba(255, 200, 69, 0.28);
}

.btn--primary:hover {
    background: #F4BC34;
    color: var(--color-text);
}

.btn--secondary {
    background: transparent;
    color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn--secondary:hover {
    background: var(--color-primary-dark);
    color: var(--color-surface);
}

.btn--on-dark {
    background: var(--color-surface);
    color: var(--color-primary-dark);
    border-color: var(--color-surface);
}

.btn--on-dark:hover {
    background: transparent;
    color: var(--color-surface);
    border-color: var(--color-surface);
}

.btn--dark {
    background: var(--color-primary-dark);
    color: var(--color-surface);
    border-color: var(--color-primary-dark);
}

.btn--dark:hover {
    background: var(--color-primary);
    color: var(--color-surface);
    border-color: var(--color-primary);
}

.btn--ghost {
    background: transparent;
    color: inherit;
    border-color: currentColor;
}

.btn--block {
    width: 100%;
}

.card {
    display: grid;
    align-content: start;
    gap: var(--space-4);
    padding: var(--card-padding, var(--space-7));
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.card--soft {
    background: var(--color-bg);
}

.card--dark {
    background: var(--color-primary-dark);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--color-surface);
}

.card--interactive {
    transition: transform var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard);
}

.card--interactive:hover,
.card--interactive:focus-within {
    transform: translateY(-4px);
    border-color: rgba(255, 200, 69, 0.74);
    box-shadow: var(--shadow-lift);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-sm);
    color: var(--color-surface);
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-toggle:hover {
    transform: translateY(-1px);
}

.site-header.is-scrolled .nav-toggle,
html.nav-open .nav-toggle {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--color-surface);
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

html.nav-open {
    overflow: hidden;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(620px, calc(100svh - 120px), 780px);
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--color-primary-dark);
    color: var(--color-surface);
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    opacity: 0.54;
}

.hero__shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(7, 26, 37, 0.58);
}

.hero__content {
    padding-block: clamp(78px, 9vw, 128px);
}

.hero h1 span {
    display: block;
    color: var(--color-accent);
}

.hero__lead {
    width: min(100%, 640px);
    max-width: 640px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: var(--fs-lead);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: min(100%, 760px);
    margin: 36px 0 0;
    padding: 0;
}

.hero-proof div {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(7, 26, 37, 0.74);
}

.hero-proof dt {
    color: var(--color-surface);
    font-weight: 800;
}

.hero-proof dd {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.74);
}

.page-hero {
    padding-block: clamp(108px, 15vw, 180px) clamp(76px, 10vw, 132px);
    background: var(--color-primary-dark);
    color: var(--color-surface);
}

.page-hero__inner {
    max-width: 920px;
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: var(--fs-lead);
}

.about-photo-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(620px, calc(100svh - 120px), 780px);
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--color-primary-dark);
    color: var(--color-surface);
}

.about-photo-hero > img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    opacity: 0.62;
}

.about-photo-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(7, 26, 37, 0.62);
}

.about-photo-hero__content {
    padding-block: clamp(96px, 13vw, 164px);
}

.about-photo-hero h1 {
    max-width: 900px;
    font-size: var(--fs-hero);
}

.about-photo-hero p {
    max-width: 720px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--fs-lead);
}

.reviews-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(560px, calc(86svh - 100px), 740px);
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--color-primary-dark);
    color: var(--color-surface);
}

.reviews-hero > img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    opacity: 0.52;
}

.reviews-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(7, 26, 37, 0.66);
}

.reviews-hero__content {
    padding-block: clamp(86px, 12vw, 150px);
}

.reviews-hero h1 {
    max-width: 900px;
    font-size: var(--fs-hero);
}

.reviews-hero p {
    max-width: 720px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--fs-lead);
}

.contact-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(560px, calc(88svh - 100px), 760px);
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--color-primary-dark);
    color: var(--color-surface);
}

.contact-hero > img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    opacity: 0.56;
}

.contact-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(7, 26, 37, 0.64);
}

.contact-hero__content {
    padding-block: clamp(92px, 13vw, 158px);
}

.contact-hero h1 {
    max-width: 960px;
    font-size: var(--fs-hero);
}

.contact-hero p {
    max-width: 720px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--fs-lead);
}

.section {
    padding-block: var(--section-space);
    background: var(--color-surface);
}

@supports (content-visibility: auto) {
    .section {
        content-visibility: auto;
        contain-intrinsic-size: auto 900px;
    }
}

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

.section--dark {
    background: var(--color-primary-dark);
    color: var(--color-surface);
}

.section--dark p {
    color: rgba(255, 255, 255, 0.74);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 48px;
    text-align: center;
}

.section-heading--wide {
    max-width: 900px;
}

.section-heading p {
    max-width: 680px;
    margin-inline: auto;
    font-size: 1.08rem;
}

.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: clamp(34px, 7vw, 90px);
    align-items: start;
}

.about-intro__copy {
    display: grid;
    gap: 18px;
}

.about-intro__copy p {
    margin-bottom: 0;
    font-size: 1.08rem;
}

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

.about-panel {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: clamp(28px, 4vw, 38px);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.about-panel--large {
    grid-row: span 2;
}

.about-panel p {
    margin-bottom: 0;
}

.credential-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.credential-list article {
    padding: 24px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.credential-list h3 {
    margin-bottom: 8px;
}

.credential-list p {
    margin-bottom: 0;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.timeline article {
    position: relative;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
}

.timeline article::after {
    content: "";
    position: absolute;
    top: 48px;
    right: -22px;
    width: 22px;
    height: 2px;
    background: var(--color-accent);
}

.timeline article:last-child::after {
    display: none;
}

.timeline span {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: var(--color-accent);
    color: var(--color-text);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 800;
}

.timeline h3 {
    color: var(--color-surface);
}

.timeline p {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-stats div {
    display: grid;
    gap: 10px;
    min-height: 210px;
    place-items: center;
    padding: 34px;
    background: var(--color-primary);
    color: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.about-stats strong {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: var(--fs-stat);
    line-height: 1;
}

.about-stats span {
    font-weight: 900;
}

.about-cta {
    background: var(--color-primary-dark);
    color: var(--color-surface);
}

.about-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 6vw, 82px);
}

.about-cta h2 {
    max-width: 800px;
    font-size: var(--fs-cta);
}

.about-cta p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.76);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

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

.service-card,
.feature-card {
    display: grid;
    min-height: 280px;
    align-content: start;
    gap: 14px;
    padding: 30px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card {
    min-height: 300px;
}

.service-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 200, 69, 0.74);
    box-shadow: var(--shadow-soft);
}

.service-card p,
.feature-card p {
    margin-bottom: 0;
}

.service-card a:not(.btn) {
    width: fit-content;
    margin-top: 4px;
    color: var(--color-primary);
    font-weight: 800;
}

.service-card a:not(.btn)::after {
    content: " ->";
    color: var(--color-accent);
}

.service-card .btn {
    width: fit-content;
    margin-top: auto;
}

.service-card--large {
    min-height: 260px;
}

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

.premium-service-card {
    display: grid;
    min-height: 430px;
    align-content: start;
    gap: 24px;
    padding: clamp(28px, 4vw, 38px);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.premium-service-card--alt {
    background: var(--color-bg);
}

.premium-service-card--contact {
    background: var(--color-primary-dark);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--color-surface);
}

.premium-service-card--contact p,
.premium-service-card--contact .benefit-list li {
    color: rgba(255, 255, 255, 0.82);
}

.premium-service-card--contact .service-detail {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
}

.premium-service-card--contact .service-detail h4 {
    color: var(--color-surface);
}

.premium-service-card--contact .btn {
    width: fit-content;
    margin-top: auto;
}

.premium-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 200, 69, 0.74);
    box-shadow: var(--shadow-soft);
}

.premium-service-card__top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.premium-service-card__top h3 {
    margin-bottom: 0;
    font-size: var(--fs-card-title);
}

.premium-service-card__description {
    margin-bottom: 0;
    font-size: 1.02rem;
}

.service-line-icon {
    display: grid;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    place-items: center;
    background: var(--color-primary);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    box-shadow: 0 14px 28px rgba(25, 61, 81, 0.16);
}

.service-line-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-detail {
    padding: 20px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.premium-service-card:not(.premium-service-card--alt) .service-detail {
    background: var(--color-bg);
}

.service-detail h4 {
    margin: 0 0 12px;
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.benefit-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.benefit-list li {
    position: relative;
    padding-left: 24px;
    color: var(--color-text);
    font-weight: 700;
}

.benefit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 12px;
    height: 2px;
    background: var(--color-accent);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
    gap: clamp(34px, 7vw, 86px);
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 112px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.faq-item summary {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 24px;
    color: var(--color-primary-dark);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    display: grid;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    place-items: center;
    background: var(--color-accent);
    border-radius: 50%;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 800;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding: 0 24px 24px;
    margin-bottom: 0;
}

.icon-tile {
    display: inline-grid;
    width: 56px;
    height: 56px;
    place-items: center;
    margin-bottom: 10px;
    background: var(--color-primary);
    color: var(--color-accent);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(42px, 7vw, 92px);
    align-items: start;
}

.split--center {
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 18px;
}

.feature-list > div,
.value-grid article,
.process-step,
.review-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.section--dark .feature-list > div {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.feature-list > div {
    padding: 26px;
}

.feature-list h3 {
    margin-bottom: 8px;
}

.process-grid,
.value-grid,
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.process-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 22px;
    align-items: center;
}

.process-step {
    padding: 32px;
}

.section--dark .process-step {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.section--dark .process-step h3 {
    color: var(--color-surface);
}

.process-step span {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-bottom: 26px;
    background: var(--color-accent);
    color: var(--color-text);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 800;
}

.process-arrow {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
}

.area-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: center;
    padding: clamp(26px, 4vw, 42px);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.area-cloud span,
.town-grid span {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-primary-dark);
    font-weight: 800;
}

.review-card {
    padding: 30px;
}

.rating-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: clamp(36px, 7vw, 90px);
    align-items: center;
}

.rating-overview__copy p {
    max-width: 680px;
}

.platform-logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.platform-logo {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 1px;
    padding: 0 18px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    color: var(--color-primary-dark);
    font-weight: 900;
}

.platform-logo--google span:nth-child(1),
.platform-logo--google span:nth-child(4) {
    color: #4285F4;
}

.platform-logo--google span:nth-child(2),
.platform-logo--google span:nth-child(6) {
    color: #DB4437;
}

.platform-logo--google span:nth-child(3) {
    color: #F4B400;
}

.platform-logo--google span:nth-child(5) {
    color: #0F9D58;
}

.platform-logo--facebook {
    color: #1877F2;
}

.platform-logo--facebook span {
    margin-right: 2px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
}

.platform-logo--checkatrade {
    color: #005EB8;
}

.platform-logo--trustpilot {
    color: #00B67A;
}

.average-rating-card {
    position: relative;
    display: grid;
    min-height: 340px;
    place-items: center;
    padding: 34px;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    color: var(--color-surface);
    text-align: center;
}

.average-rating-card strong {
    position: absolute;
    top: 112px;
    color: var(--color-surface);
    font-family: var(--font-heading);
    font-size: 4.2rem;
    line-height: 1;
}

.average-rating-card .stars {
    margin: 140px 0 2px;
}

.average-rating-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 800;
}

.rating-ring {
    position: absolute;
    top: 42px;
    width: 178px;
    height: 178px;
    transform: rotate(-90deg);
}

.rating-ring circle {
    fill: none;
    stroke-width: 9;
}

.rating-ring circle:first-child {
    stroke: rgba(255, 255, 255, 0.18);
}

.rating-ring circle:last-child {
    stroke: var(--color-accent);
    stroke-dasharray: 314;
    stroke-dashoffset: 0;
}

.review-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 36px;
}

.review-toolbar h2 {
    margin-bottom: 0;
}

.review-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.review-filters button {
    min-height: 42px;
    padding: 0 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-primary-dark);
    cursor: pointer;
    font-weight: 900;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.review-filters button:hover,
.review-filters button.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-1px);
}

.google-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.google-review-card {
    display: grid;
    align-content: start;
    gap: 18px;
    min-height: 360px;
    padding: 28px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.google-review-card.is-hidden {
    display: none;
}

.google-review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.google-review-card__top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
}

.review-avatar {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    background: var(--color-primary);
    color: var(--color-accent);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 900;
}

.google-review-card h3 {
    margin-bottom: 3px;
    font-size: 1rem;
}

.google-review-card__top span {
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.google-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: #4285F4;
    font-family: var(--font-heading);
}

.google-review-card blockquote {
    margin-bottom: 0;
    font-size: 1rem;
}

.review-service {
    align-self: end;
    width: fit-content;
    margin-bottom: 0;
    padding: 7px 11px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-primary);
    font-size: 0.86rem;
    font-weight: 900;
}

.photo-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.photo-review-card {
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.photo-review-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.photo-review-card:nth-child(2) img {
    object-position: 70% center;
}

.photo-review-card:nth-child(3) img {
    object-position: 45% center;
}

.photo-review-card div {
    padding: 24px;
}

.photo-review-card span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    margin-bottom: 14px;
    padding: 0 10px;
    background: var(--color-accent);
    border-radius: 999px;
    color: var(--color-text);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.photo-review-card p {
    margin-bottom: 0;
}

.trust-section {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: clamp(36px, 7vw, 90px);
    align-items: start;
}

.trust-section h2 {
    max-width: 720px;
}

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

.trust-grid article {
    display: grid;
    gap: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
}

.trust-grid strong {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.trust-grid span {
    color: rgba(255, 255, 255, 0.76);
}

.review-submit-cta {
    background: var(--color-primary-dark);
    color: var(--color-surface);
}

.review-submit-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 6vw, 84px);
}

.review-submit-cta h2 {
    max-width: 780px;
    font-size: var(--fs-cta);
}

.review-submit-cta p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.76);
}

.stars {
    margin-bottom: 18px;
    color: var(--color-accent);
    font-weight: 900;
    letter-spacing: 0;
}

.stars--large {
    font-size: 1.6rem;
}

blockquote {
    margin: 0 0 22px;
    color: var(--color-text);
    font-size: 1.05rem;
    font-weight: 600;
}

cite {
    color: var(--color-muted);
    font-style: normal;
    font-weight: 800;
}

.check-list {
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    background: transparent;
}

.check-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 0.48em;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(-45deg);
}

.check-list--light li {
    color: var(--color-text);
}

.media-frame {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.media-frame img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.value-grid article {
    padding: 30px;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stats-strip div {
    padding: 26px;
    background: var(--color-primary);
    color: var(--color-surface);
    border-radius: var(--radius-md);
}

.stats-strip strong,
.stats-strip span {
    display: block;
}

.stats-strip strong {
    margin-bottom: 8px;
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.stats-strip span {
    color: rgba(255, 255, 255, 0.78);
}

.coverage-map {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    background: #D8EAF1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.coverage-map__art {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.coverage-map__water {
    fill: #D8EAF1;
}

.coverage-map__land {
    fill: #F8FAFC;
}

.coverage-map__coast,
.coverage-map__river,
.coverage-map__road,
.coverage-map__boundary {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.coverage-map__coast {
    stroke: rgba(25, 61, 81, 0.32);
    stroke-width: 6;
}

.coverage-map__river {
    stroke: #8FC3D5;
    stroke-width: 14;
}

.coverage-map__road {
    stroke: rgba(25, 61, 81, 0.24);
    stroke-width: 6;
    stroke-dasharray: 10 12;
    filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.5));
}

.coverage-map__road--main {
    stroke: var(--color-accent);
    stroke-width: 7;
    stroke-dasharray: none;
    filter: drop-shadow(0 2px 0 rgba(7, 26, 37, 0.12));
}

.coverage-map__boundary {
    stroke: rgba(25, 61, 81, 0.22);
    stroke-width: 3;
}

.coverage-map__labels text {
    fill: rgba(25, 61, 81, 0.58);
    stroke: rgba(248, 250, 252, 0.74);
    stroke-width: 8px;
    paint-order: stroke;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    pointer-events: none;
}

.coverage-map__labels text:nth-child(4) {
    fill: rgba(27, 27, 27, 0.62);
    font-size: 20px;
}

.coverage-map__legend {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: calc(100% - 36px);
}

.coverage-map__legend span {
    position: static;
    transform: none;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(25, 61, 81, 0.12);
    border-radius: var(--radius-full);
    box-shadow: 0 8px 18px rgba(7, 26, 37, 0.08);
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 900;
}

.coverage-map__legend-line {
    display: block;
    width: 24px;
    height: 0;
    border-top: 3px dashed rgba(25, 61, 81, 0.34);
}

.coverage-map__legend-line--primary {
    height: 3px;
    border-top: 0;
    background: var(--color-accent);
    border-radius: var(--radius-full);
}

.service-area-map {
    position: relative;
    min-height: clamp(560px, 64vw, 760px);
    overflow: hidden;
    background: #D8EAF1;
    border: 1px solid rgba(25, 61, 81, 0.14);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.area-map-pin {
    position: absolute;
    left: var(--x);
    top: var(--y);
    z-index: 2;
    transform: translate(-50%, -50%);
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 14px;
    background: var(--color-surface);
    color: var(--color-primary-dark);
    border: 2px solid transparent;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(7, 26, 37, 0.22);
    font-weight: 900;
    white-space: nowrap;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.area-map-pin:hover {
    transform: translate(-50%, -50%) translateY(-2px);
    background: var(--color-accent);
    border-color: rgba(255, 255, 255, 0.58);
    color: var(--color-text);
}

.service-area-map__panel {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 3;
    display: grid;
    gap: 6px;
    width: min(560px, calc(100% - 60px));
    padding: 24px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 46px rgba(7, 26, 37, 0.24);
}

.service-area-map__panel strong {
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.service-area-map__panel span {
    color: var(--color-muted);
    font-weight: 700;
}

.coverage-static-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: clamp(22px, 4vw, 34px);
    align-items: start;
}

.coverage-static-card {
    position: relative;
    min-height: clamp(560px, 56vw, 720px);
    overflow: hidden;
    isolation: isolate;
    background: #D8EAF1;
    border: 1px solid rgba(25, 61, 81, 0.14);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.coverage-static-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.coverage-static-art__water {
    fill: #D8EAF1;
}

.coverage-static-art__land {
    fill: #EFF6F8;
    stroke: rgba(25, 61, 81, 0.16);
    stroke-width: 3;
}

.coverage-static-art__radius {
    fill: var(--color-accent);
    opacity: 0.18;
}

.coverage-static-art__road {
    fill: none;
    stroke: rgba(25, 61, 81, 0.34);
    stroke-dasharray: 13 12;
    stroke-linecap: round;
    stroke-width: 7;
    filter: drop-shadow(0 2px 1px rgba(255, 255, 255, 0.72));
}

.coverage-static-art__road--main {
    stroke: var(--color-accent);
    stroke-dasharray: none;
    stroke-width: 9;
}

.coverage-static-art__coast {
    fill: none;
    stroke: rgba(25, 61, 81, 0.24);
    stroke-linecap: round;
    stroke-width: 4;
}

.coverage-static-art__label {
    fill: rgba(25, 61, 81, 0.16);
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 800;
    letter-spacing: 0;
}

.coverage-static-art__label--small {
    font-size: 28px;
}

.coverage-static-pin {
    position: absolute;
    left: var(--x);
    top: var(--y);
    z-index: 2;
    display: grid;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    place-items: center;
    background: transparent;
    color: var(--color-primary-dark);
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.coverage-static-pin:hover,
.coverage-static-pin:focus-visible {
    z-index: 5;
}

.coverage-static-pin.is-active {
    z-index: 4;
}

.coverage-static-pin__dot {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    background: var(--color-primary);
    border: 4px solid var(--color-surface);
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(7, 26, 37, 0.22);
    color: var(--color-surface);
    transition: transform var(--duration-fast) var(--ease-standard), background-color var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard);
}

.coverage-static-pin__dot::after {
    content: "";
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
}

.coverage-static-pin__label {
    position: absolute;
    top: 50%;
    left: calc(50% + 22px);
    z-index: 1;
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    background: var(--color-surface);
    border: 1px solid rgba(25, 61, 81, 0.14);
    border-radius: var(--radius-full);
    box-shadow: 0 10px 24px rgba(7, 26, 37, 0.12);
    color: var(--color-primary-dark);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    transform: translateY(-50%);
    transition: background-color var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard);
}

.coverage-static-pin__label em {
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    padding: 0 8px;
    background: var(--color-primary-dark);
    border-radius: var(--radius-full);
    color: var(--color-accent);
    font-style: normal;
    font-size: 0.66rem;
    font-weight: 900;
}

.coverage-static-pin:hover .coverage-static-pin__dot,
.coverage-static-pin:focus-visible .coverage-static-pin__dot,
.coverage-static-pin.is-active .coverage-static-pin__dot {
    background: var(--color-accent);
    color: var(--color-text);
    transform: scale(1.12);
}

.coverage-static-pin:hover .coverage-static-pin__label,
.coverage-static-pin:focus-visible .coverage-static-pin__label,
.coverage-static-pin.is-active .coverage-static-pin__label {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-text);
}

.coverage-static-pin.is-hq .coverage-static-pin__dot {
    width: 36px;
    height: 36px;
    background: var(--color-primary-dark);
    color: var(--color-accent);
}

.coverage-static-pin.is-hq .coverage-static-pin__dot::after {
    content: "HQ";
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1;
}

.coverage-static-pin.is-hq:hover .coverage-static-pin__dot,
.coverage-static-pin.is-hq:focus-visible .coverage-static-pin__dot,
.coverage-static-pin.is-hq.is-active .coverage-static-pin__dot {
    background: var(--color-accent);
    color: var(--color-text);
}

.coverage-static-pin[data-coverage-location="Braintree"] .coverage-static-pin__label,
.coverage-static-pin[data-coverage-location="Witham"] .coverage-static-pin__label,
.coverage-static-pin[data-coverage-location="Chelmsford"] .coverage-static-pin__label,
.coverage-static-pin[data-coverage-location="Brentwood"] .coverage-static-pin__label,
.coverage-static-pin[data-coverage-location="Rayleigh"] .coverage-static-pin__label {
    right: calc(50% + 22px);
    left: auto;
}

.coverage-static-pin[data-coverage-location="Billericay"] .coverage-static-pin__label {
    top: -4px;
    left: calc(50% + 18px);
    transform: translateY(-100%);
}

.coverage-static-pin[data-coverage-location="Basildon"] .coverage-static-pin__label {
    top: calc(100% + 4px);
    left: calc(50% + 10px);
    transform: none;
}

.coverage-static-pin[data-coverage-location="Southend-on-Sea"] .coverage-static-pin__label {
    left: calc(50% + 20px);
}

.coverage-static-pin[data-coverage-location="Harlow"] .coverage-static-pin__label,
.coverage-static-pin[data-coverage-location="Epping"] .coverage-static-pin__label {
    left: calc(50% + 20px);
}

.coverage-static-legend {
    position: absolute;
    left: clamp(14px, 2vw, 22px);
    bottom: clamp(14px, 2vw, 22px);
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: calc(100% - 28px);
}

.coverage-static-legend span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(25, 61, 81, 0.12);
    border-radius: var(--radius-full);
    box-shadow: 0 8px 18px rgba(7, 26, 37, 0.08);
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 900;
}

.coverage-static-legend__route {
    display: block;
    width: 24px;
    height: 0;
    border-top: 3px dashed rgba(25, 61, 81, 0.34);
}

.coverage-static-legend__route--primary {
    height: 3px;
    border-top: 0;
    background: var(--color-accent);
    border-radius: var(--radius-full);
}

.coverage-static-legend__radius {
    width: 14px;
    height: 14px;
    background: rgba(255, 200, 69, 0.28);
    border: 2px solid rgba(25, 61, 81, 0.16);
    border-radius: 50%;
}

.coverage-static-panel {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.coverage-static-panel__heading,
.coverage-static-detail,
.coverage-postcode-check {
    padding: clamp(22px, 3vw, 28px);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.coverage-static-panel__heading h3 {
    margin-bottom: 10px;
    font-size: var(--fs-card-title-sm);
}

.coverage-static-panel__heading p:last-child {
    margin-bottom: 0;
}

.coverage-town-list {
    display: grid;
    gap: 10px;
}

.coverage-town-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    width: 100%;
    min-height: 64px;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    color: var(--color-primary-dark);
    cursor: pointer;
    text-align: left;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.coverage-town-row:hover,
.coverage-town-row.is-active {
    transform: translateY(-1px);
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-text);
    box-shadow: 0 14px 32px rgba(255, 200, 69, 0.24);
}

.coverage-town-row:focus-visible {
    outline: 3px solid var(--color-primary-dark);
    outline-offset: 4px;
}

.coverage-town-row__pin {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: rgba(25, 61, 81, 0.08);
    border-radius: 50%;
}

.coverage-town-row__pin::before {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--color-surface);
}

.coverage-town-row:hover .coverage-town-row__pin,
.coverage-town-row.is-active .coverage-town-row__pin {
    background: rgba(255, 255, 255, 0.48);
}

.coverage-town-row:hover .coverage-town-row__pin::before,
.coverage-town-row.is-active .coverage-town-row__pin::before {
    background: var(--color-text);
}

.coverage-town-row__content {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.coverage-town-row strong {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    line-height: 1.2;
}

.coverage-town-row small {
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.coverage-town-row:hover small,
.coverage-town-row.is-active small {
    color: rgba(27, 27, 27, 0.72);
}

.coverage-town-row em {
    display: inline-flex;
    min-width: 44px;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    padding-inline: 10px;
    background: var(--color-primary-dark);
    border-radius: var(--radius-full);
    color: var(--color-accent);
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
}

.coverage-town-row.is-active em,
.coverage-town-row:hover em {
    background: var(--color-surface);
    color: var(--color-primary-dark);
}

.coverage-town-row__chevron {
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: 0.58;
    transform: rotate(45deg);
}

.coverage-static-detail {
    display: grid;
    gap: 6px;
}

.coverage-static-detail strong {
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.coverage-static-detail span,
.coverage-static-detail small {
    color: var(--color-muted);
    font-weight: 700;
}

.coverage-postcode-check {
    display: grid;
    gap: 12px;
}

.coverage-postcode-check label {
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-weight: 800;
}

.coverage-postcode-check div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.coverage-postcode-check input {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
}

.coverage-postcode-check input:focus {
    outline: 3px solid rgba(255, 200, 69, 0.5);
    border-color: var(--color-primary);
}

.coverage-postcode-check p {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 700;
}

.coverage-postcode-check p.is-success {
    color: #23613D;
}

.coverage-postcode-check p.is-warning {
    color: #7A5800;
}

.coverage-check-layout,
.contact-coverage-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.58fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
}

.coverage-check-copy p,
.contact-coverage-layout p {
    max-width: 660px;
}

.coverage-postcode-check--large {
    align-self: stretch;
    align-content: center;
    min-height: 260px;
}

.location-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.location-card {
    display: grid;
    min-height: 340px;
    align-content: start;
    gap: 22px;
    padding: clamp(26px, 4vw, 34px);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.location-card:nth-child(even) {
    background: var(--color-bg);
}

.location-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 200, 69, 0.74);
    box-shadow: var(--shadow-soft);
}

.location-card__top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.location-card__top > span {
    display: grid;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    place-items: center;
    background: var(--color-primary);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 900;
}

.location-card h3 {
    margin-bottom: 0;
    font-size: var(--fs-card-title);
}

.location-card h4 {
    margin: 0 0 12px;
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.location-card p {
    margin-bottom: 0;
}

.location-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-services span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 11px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-primary);
    font-size: 0.84rem;
    font-weight: 900;
}

.location-card:nth-child(odd) .location-services span {
    background: var(--color-bg);
}

.location-response {
    margin: 0;
}

.location-response div {
    display: grid;
    gap: 6px;
    padding: 18px;
    background: var(--color-primary-dark);
    border-radius: var(--radius-sm);
}

.location-response dt {
    color: var(--color-accent);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.location-response dd {
    margin: 0;
    color: var(--color-surface);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
}

.areas-cta {
    background: var(--color-primary-dark);
    color: var(--color-surface);
}

.areas-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 6vw, 84px);
}

.areas-cta h2 {
    max-width: 780px;
    font-size: var(--fs-cta);
}

.areas-cta p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.76);
}

.coverage-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: clamp(22px, 4vw, 34px);
    align-items: start;
}

.coverage-map-stack {
    display: grid;
    gap: 16px;
    min-width: 0;
}

.coverage-map--interactive {
    min-height: 520px;
}

.map-pin {
    position: absolute;
    left: var(--x);
    top: var(--y);
    z-index: 2;
    transform: translate(-50%, -50%);
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    padding: 0 14px;
    background: var(--color-surface);
    color: var(--color-primary-dark);
    border: 2px solid transparent;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(7, 26, 37, 0.18);
    cursor: pointer;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.map-pin:hover,
.map-pin.is-active {
    z-index: 4;
    background: var(--color-accent);
    border-color: rgba(255, 255, 255, 0.56);
    transform: translate(-50%, -50%) translateY(-2px);
}

.map-pin:focus-visible,
.town-pill:focus-visible {
    outline: 3px solid var(--color-primary-dark);
    outline-offset: 4px;
    box-shadow: 0 0 0 7px rgba(255, 200, 69, 0.34), 0 12px 26px rgba(7, 26, 37, 0.18);
    z-index: 5;
}

.map-panel {
    position: relative;
    display: grid;
    gap: 6px;
    padding: 22px 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-primary-dark);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 42px rgba(7, 26, 37, 0.22);
}

.map-panel strong {
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.map-panel span {
    position: static;
    display: block;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    white-space: normal;
    color: var(--color-muted);
    font-weight: 600;
}

.town-card {
    padding: clamp(24px, 4vw, 36px);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.town-grid--left {
    justify-content: flex-start;
}

.town-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.town-pill {
    position: relative;
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    padding: 0 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-primary-dark);
    cursor: pointer;
    font-weight: 800;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.town-pill:hover,
.town-pill.is-active {
    transform: translateY(-1px);
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-text);
}

.review-summary {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}

.review-summary h2 {
    margin-bottom: 14px;
}

.rating-bars {
    display: grid;
    gap: 14px;
}

.rating-bars div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
}

.rating-bars span {
    color: var(--color-muted);
}

.rating-bars strong {
    color: var(--color-primary);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
}

.contact-panel {
    position: sticky;
    top: 112px;
}

.contact-methods {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.contact-methods a {
    display: grid;
    gap: 4px;
    padding: 20px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.contact-methods span {
    color: var(--color-muted);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-methods strong {
    color: var(--color-primary-dark);
    word-break: break-word;
}

.quote-form {
    padding: clamp(24px, 4vw, 42px);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.form-alert {
    margin-bottom: 22px;
    padding: 16px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-weight: 800;
}

.form-alert--success {
    background: #EEF8F2;
    border-color: #BFE4CB;
    color: #23613D;
}

.form-alert--error {
    background: #FFF4F2;
    border-color: #F1C5BF;
    color: var(--color-danger);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field--trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-field label {
    color: var(--color-primary-dark);
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #C9D4DE;
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-text);
    min-height: 52px;
    padding: 13px 15px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 150px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(25, 61, 81, 0.12);
    outline: 0;
}

.custom-select {
    position: relative;
}

.custom-select__native {
    position: absolute;
    inset: auto auto 0 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.custom-select__button {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 15px;
    background: var(--color-surface);
    border: 1px solid #C9D4DE;
    border-radius: var(--radius-sm);
    color: var(--color-primary-dark);
    cursor: pointer;
    font-weight: 800;
    text-align: left;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.custom-select__button:hover,
.custom-select.is-open .custom-select__button {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(25, 61, 81, 0.12);
}

.custom-select.has-error .custom-select__button {
    border-color: var(--color-danger);
}

.custom-select__button:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
}

.custom-select__chevron {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
}

.custom-select.is-open .custom-select__chevron {
    transform: translateY(2px) rotate(225deg);
}

.custom-select__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    max-height: min(340px, 44vh);
    overflow-x: hidden;
    overflow-y: scroll;
    overscroll-behavior: contain;
    padding: 8px 18px 8px 8px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 22px 54px rgba(12, 31, 44, 0.18), inset 0 -14px 0 rgba(25, 61, 81, 0.04);
    scrollbar-color: var(--color-primary) rgba(25, 61, 81, 0.08);
    scrollbar-gutter: stable;
    scrollbar-width: thin;
}

.custom-select__menu::-webkit-scrollbar {
    width: 10px;
}

.custom-select__menu::-webkit-scrollbar-track {
    background: rgba(25, 61, 81, 0.08);
    border-radius: var(--radius-full);
}

.custom-select__menu::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border: 2px solid var(--color-surface);
    border-radius: var(--radius-full);
}

.custom-select__menu::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

.custom-select__menu[hidden] {
    display: none;
}

.custom-select__scroll-rail {
    position: absolute;
    top: calc(100% + 24px);
    right: 8px;
    z-index: 31;
    display: none;
    width: 6px;
    height: min(278px, calc(44vh - 62px));
    min-height: 104px;
    background: rgba(25, 61, 81, 0.12);
    border-radius: var(--radius-full);
    pointer-events: none;
}

.custom-select.is-open .custom-select__scroll-rail {
    display: block;
}

.custom-select__scroll-rail span {
    display: block;
    width: 100%;
    height: 58px;
    background: var(--color-primary);
    border-radius: inherit;
    box-shadow: 0 0 0 2px var(--color-surface);
}

.custom-select__option {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    background: transparent;
    border-radius: var(--radius-sm);
    color: var(--color-primary-dark);
    cursor: pointer;
    font-weight: 800;
    text-align: left;
}

.custom-select__option:hover,
.custom-select__option:focus-visible,
.custom-select__option.is-selected {
    background: var(--color-accent);
    color: var(--color-text);
    outline: 0;
}

.custom-select__option.is-selected::after {
    content: "";
    width: 8px;
    height: 14px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.field-error {
    display: none;
    color: #A02820;
    font-size: 0.86rem;
    font-weight: 700;
}

.field-error.is-visible,
.quote-form.was-validated :invalid + .field-error {
    display: block;
}

.form-note {
    margin: 16px 0 0;
    font-size: 0.92rem;
}

.quote-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.form-fallback {
    margin: 16px 0 0;
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.form-fallback a {
    color: var(--color-primary);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.form-copy-status {
    min-height: 1.5em;
    margin: 14px 0 0;
    color: var(--color-primary);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.5;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 30px);
}

.contact-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    min-height: 220px;
    align-content: start;
    align-items: start;
    gap: 10px 22px;
    width: 100%;
    padding: clamp(28px, 3vw, 38px);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    color: inherit;
    cursor: pointer;
    text-align: left;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 200, 69, 0.74);
    box-shadow: var(--shadow-soft);
}

.contact-card:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
}

.contact-card__icon {
    display: grid;
    grid-row: 1 / span 3;
    width: 62px;
    height: 62px;
    place-items: center;
    margin-bottom: 0;
    background: var(--color-primary);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    box-shadow: 0 14px 28px rgba(25, 61, 81, 0.16);
}

.contact-card__icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card__label {
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-card strong {
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: clamp(1.22rem, 1.8vw, 1.55rem);
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.contact-card__copy {
    color: var(--color-muted);
}

.whatsapp-status {
    margin-top: 18px;
    color: var(--color-primary-dark);
    font-weight: 800;
}

.emergency-banner {
    background: var(--color-primary-dark);
    color: var(--color-surface);
    padding-block: clamp(64px, 8vw, 108px);
}

.emergency-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 6vw, 84px);
}

.emergency-banner h2 {
    max-width: 760px;
    font-size: var(--fs-cta);
}

.emergency-banner p {
    max-width: 690px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
}

.premium-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.15fr);
    gap: clamp(36px, 7vw, 92px);
    align-items: start;
}

.premium-contact-copy {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 18px;
}

.premium-contact-copy p {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

.quote-form--large {
    min-height: 680px;
    padding: clamp(28px, 4vw, 48px);
}

.quote-form--large .btn {
    min-width: min(100%, 220px);
}

.contact-map-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.66fr) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 76px);
    align-items: center;
}

.contact-map-layout p {
    max-width: 560px;
}

.google-map-placeholder {
    position: relative;
    display: grid;
    min-height: clamp(420px, 48vw, 560px);
    place-items: center;
    overflow: hidden;
    padding: clamp(28px, 5vw, 56px);
    background: var(--color-primary);
    border: 1px solid rgba(25, 61, 81, 0.14);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    color: var(--color-surface);
    text-align: center;
}

.google-map-placeholder::before,
.google-map-placeholder::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.google-map-placeholder::before {
    inset: 52px;
}

.google-map-placeholder::after {
    inset: 122px;
}

.google-map-placeholder span,
.google-map-placeholder strong,
.google-map-placeholder p {
    position: relative;
    z-index: 1;
}

.google-map-placeholder span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 13px;
    background: var(--color-accent);
    border-radius: 999px;
    color: var(--color-text);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.google-map-placeholder strong {
    display: block;
    max-width: 520px;
    color: var(--color-surface);
    font-family: var(--font-heading);
    font-size: var(--fs-cta-small);
    line-height: 1.06;
}

.google-map-placeholder p {
    max-width: 560px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.78);
}

.business-hours {
    display: grid;
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 74px);
    align-items: center;
    padding: clamp(30px, 5vw, 52px);
    background: var(--color-primary-dark);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    color: var(--color-surface);
}

.business-hours h2 {
    margin-bottom: 0;
    color: var(--color-surface);
}

.hours-grid {
    display: grid;
    gap: 14px;
}

.hours-grid div {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
}

.hours-grid span {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 800;
}

.hours-grid strong {
    color: var(--color-accent);
    text-align: right;
}

.mobile-call-now {
    display: none;
}

.policy-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
    gap: clamp(34px, 7vw, 84px);
    align-items: start;
}

.policy-meta {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 18px;
    padding: clamp(24px, 4vw, 34px);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.policy-meta strong {
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: var(--fs-card-title);
}

.policy-meta p {
    margin-bottom: 0;
}

.policy-content {
    display: grid;
    gap: 18px;
}

.policy-content h2 {
    margin-bottom: 12px;
}

.policy-card {
    padding: clamp(24px, 4vw, 34px);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.policy-card h3 {
    margin-bottom: 10px;
}

.policy-card p {
    margin-bottom: 0;
}

.final-cta {
    background: var(--color-accent);
}

.final-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.final-cta h2 {
    max-width: 720px;
    font-size: var(--fs-cta-small);
}

.final-cta p {
    max-width: 650px;
    color: rgba(27, 27, 27, 0.76);
}

.home-cta {
    background: var(--color-primary-dark);
    color: var(--color-surface);
}

.home-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 6vw, 84px);
}

.home-cta h2 {
    max-width: 820px;
    margin-bottom: 16px;
    font-size: var(--fs-cta);
}

.home-cta p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.76);
}

.site-footer {
    background: var(--color-primary-dark);
    color: var(--color-surface);
    padding-block: clamp(68px, 8vw, 104px) 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(34px, 5vw, 58px) 30px;
    align-items: start;
}

.footer-brand {
    grid-column: span 4;
}

.footer-nav {
    grid-column: span 2;
}

.footer-nav--services,
.footer-nav--areas {
    grid-column: span 3;
}

.footer-contact,
.footer-hours {
    grid-column: span 4;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand p {
    max-width: 460px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.72);
}

.brand--footer,
.brand--footer:hover {
    color: var(--color-surface);
}

.brand--footer .brand-mark {
    color: var(--color-surface);
}

.site-footer h2 {
    margin-bottom: 18px;
    color: var(--color-surface);
    font-size: 0.92rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
}

.footer-links,
.footer-links a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links a,
.footer-contact a,
.footer-bottom a,
.footer-quote-link {
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: var(--color-accent);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.footer-social a {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    color: var(--color-surface);
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-text);
}

.footer-social svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.footer-contact address {
    display: grid;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-style: normal;
}

.footer-contact address span {
    max-width: 220px;
}

.footer-quote-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 22px;
    padding: 0 18px;
    background: var(--color-accent);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-weight: 900;
}

.footer-quote-link:hover {
    transform: translateY(-2px);
    background: transparent;
    color: var(--color-surface);
}

.footer-hours dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.footer-hours dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours dl div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.footer-hours dt {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.footer-hours dd {
    margin: 0;
    color: var(--color-surface);
    font-weight: 800;
    text-align: right;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: clamp(46px, 6vw, 72px);
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-end;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--duration-slow) var(--ease-standard), transform var(--duration-slow) var(--ease-standard);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fade-slide-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .animate-fade-up {
        animation: fade-slide-up var(--duration-slow) var(--ease-standard) both;
    }
}

@media (max-width: 980px) {
    :root {
        --fs-h1: 4.4rem;
        --fs-h2: 3.15rem;
        --fs-hero: 4.8rem;
        --fs-cta: 3.4rem;
        --fs-cta-small: 3rem;
        --fs-card-title: 1.65rem;
        --fs-stat: 4rem;
    }

    h1 {
        font-size: var(--fs-h1);
    }

    .nav-toggle {
        display: grid;
        position: relative;
        z-index: 4;
    }

    .nav-panel {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        display: grid;
        width: min(420px, calc(100vw - 30px));
        height: 100svh;
        align-content: start;
        gap: 32px;
        padding: 106px 26px 32px;
        background: var(--color-surface);
        border: 1px solid var(--color-border);
        border-right: 0;
        border-radius: var(--radius-lg) 0 0 var(--radius-lg);
        box-shadow: -22px 0 60px rgba(7, 26, 37, 0.18);
        color: var(--color-primary-dark);
        z-index: 3;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: opacity 220ms ease, transform 220ms ease;
    }

    .nav-panel.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1;
        display: block;
        background: rgba(7, 26, 37, 0.48);
        opacity: 0;
        pointer-events: none;
        transition: opacity 220ms ease;
    }

    html.nav-open .nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .primary-nav,
    .nav-actions {
        display: grid;
        align-items: stretch;
        gap: 14px;
    }

    .primary-nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding-block: 10px;
        border-bottom: 1px solid var(--color-border);
        font-size: 1.05rem;
    }

    .primary-nav a::after {
        bottom: 0;
    }

    .nav-actions {
        margin-top: 2px;
    }

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

    .split,
    .contact-layout,
    .premium-contact-layout,
    .coverage-check-layout,
    .contact-coverage-layout,
    .contact-map-layout,
    .business-hours,
    .policy-layout,
    .review-summary,
    .about-intro,
    .rating-overview,
    .trust-section {
        grid-template-columns: 1fr;
    }

    .contact-panel,
    .premium-contact-copy,
    .policy-meta {
        position: static;
    }

    .service-grid,
    .feature-grid,
    .contact-card-grid,
    .process-grid,
    .value-grid,
    .review-grid,
    .google-review-grid,
    .photo-review-grid,
    .location-card-grid,
    .stats-strip,
    .timeline,
    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .review-filters {
        justify-content: flex-start;
    }

    .emergency-banner__inner {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .about-panel--large {
        grid-row: auto;
    }

    .timeline article::after {
        display: none;
    }

    .process-flow,
    .coverage-layout,
    .premium-services-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .coverage-map--interactive {
        min-height: 580px;
    }

    .contact-card {
        grid-template-columns: 1fr;
        min-height: 260px;
        gap: 12px;
    }

    .contact-card__icon {
        grid-row: auto;
        margin-bottom: 10px;
    }

    .coverage-static-layout {
        grid-template-columns: 1fr;
    }

    .coverage-static-card {
        min-height: 560px;
    }

    .map-pin {
        left: var(--mx, var(--x));
        top: var(--my, var(--y));
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        justify-content: center;
        max-width: none;
        padding: 0;
        border-radius: 50%;
        color: transparent;
        font-size: 0;
        white-space: nowrap;
    }

    .map-pin::after {
        content: attr(data-map-short);
        color: var(--color-primary-dark);
        font-size: 0.72rem;
        font-weight: 900;
    }

    .map-pin.is-active::after {
        color: var(--color-text);
    }

    .faq-intro {
        position: static;
    }

    .process-arrow {
        width: 100%;
        height: 28px;
        transform: rotate(90deg);
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand,
    .footer-nav,
    .footer-nav--services,
    .footer-nav--areas,
    .footer-contact,
    .footer-hours {
        grid-column: auto;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .coverage-static-card {
        min-height: 540px;
    }

    .coverage-static-art__label {
        font-size: 42px;
    }

    .coverage-static-art__label--small {
        font-size: 22px;
    }

    .coverage-static-pin__label {
        display: none;
    }

    .coverage-static-pin__dot {
        opacity: 0;
    }

    .coverage-static-pin::after {
        content: attr(data-short);
        position: absolute;
        left: 50%;
        top: 50%;
        display: grid;
        width: 34px;
        height: 34px;
        place-items: center;
        background: var(--color-primary);
        border: 3px solid var(--color-surface);
        border-radius: 50%;
        box-shadow: 0 12px 24px rgba(7, 26, 37, 0.22);
        color: var(--color-surface);
        font-size: 0.66rem;
        font-weight: 900;
        line-height: 1;
        transform: translate(-50%, -50%);
        transition: transform var(--duration-fast) var(--ease-standard), background-color var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard);
    }

    .coverage-static-pin.is-hq::after {
        content: "HQ";
        background: var(--color-primary-dark);
        color: var(--color-accent);
    }

    .coverage-static-pin:hover::after,
    .coverage-static-pin:focus-visible::after,
    .coverage-static-pin.is-active::after,
    .coverage-static-pin.is-hq:hover::after,
    .coverage-static-pin.is-hq:focus-visible::after,
    .coverage-static-pin.is-hq.is-active::after {
        background: var(--color-accent);
        color: var(--color-text);
        transform: translate(-50%, -50%) scale(1.08);
    }

    .coverage-static-legend {
        left: 12px;
        bottom: 12px;
        gap: 8px;
    }

    .coverage-static-legend span {
        min-height: 30px;
        padding-inline: 10px;
        font-size: 0.72rem;
    }
}

@media (max-width: 680px) {
    :root {
        --header-height: 74px;
        --section-space: var(--space-11);
        --fs-h1: 3.25rem;
        --fs-h2: 2.45rem;
        --fs-h3: 1.22rem;
        --fs-hero: 3.35rem;
        --fs-cta: 2.75rem;
        --fs-cta-small: 2.45rem;
        --fs-card-title: 1.45rem;
        --fs-card-title-sm: 1.14rem;
        --fs-lead: 1.05rem;
        --fs-stat: 3.2rem;
    }

    .container {
        width: min(calc(100vw - 28px), var(--container));
    }

    .nav-shell {
        position: relative;
        min-height: 74px;
    }

    .nav-toggle {
        position: relative;
        top: auto;
        right: auto;
        z-index: 4;
        display: grid;
        flex: 0 0 46px;
        transform: none;
    }

    .brand-copy {
        display: none;
    }

    .hero {
        min-height: clamp(600px, calc(100svh - 108px), 720px);
    }

    .contact-hero {
        min-height: clamp(620px, calc(100svh - 108px), 760px);
    }

    .contact-hero > img {
        object-position: 62% center;
        opacity: 0.44;
    }

    .contact-hero__shade {
        background: rgba(7, 26, 37, 0.72);
    }

    .contact-hero__content {
        padding-block: 86px;
    }

    .contact-hero h1 {
        font-size: var(--fs-hero);
    }

    .about-photo-hero {
        min-height: clamp(620px, calc(100svh - 108px), 760px);
    }

    .about-photo-hero > img {
        object-position: 58% center;
        opacity: 0.44;
    }

    .about-photo-hero__shade {
        background: rgba(7, 26, 37, 0.72);
    }

    .about-photo-hero__content {
        padding-block: 86px;
    }

    .about-photo-hero h1 {
        font-size: var(--fs-hero);
    }

    .hero__media {
        object-position: 58% center;
        opacity: 0.42;
    }

    .hero__shade {
        background: rgba(7, 26, 37, 0.72);
    }

    .hero__content {
        padding-block: 78px;
    }

    .hero h1 {
        font-size: var(--fs-hero);
    }

    .hero__lead {
        width: 100%;
        max-width: calc(100vw - 28px);
        font-size: 1.05rem;
        overflow-wrap: break-word;
    }

    .hero-proof {
        display: none;
    }

    .btn {
        width: 100%;
    }

    .cta-row {
        width: 100%;
    }

    .service-grid,
    .feature-grid,
    .contact-card-grid,
    .process-grid,
    .value-grid,
    .review-grid,
    .google-review-grid,
    .photo-review-grid,
    .location-card-grid,
    .stats-strip,
    .timeline,
    .about-stats,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .service-card,
    .contact-card,
    .premium-service-card,
    .location-card {
        min-height: auto;
    }

    .quote-form--large {
        min-height: 0;
    }

    .google-map-placeholder {
        min-height: 460px;
    }

    .hours-grid div {
        align-items: flex-start;
        flex-direction: column;
    }

    .hours-grid strong {
        text-align: left;
    }

    .premium-service-card__top {
        align-items: center;
    }

    .coverage-map {
        min-height: 560px;
    }

    .coverage-static-card {
        min-height: 460px;
    }

    .coverage-postcode-check div {
        grid-template-columns: 1fr;
    }

    .coverage-postcode-check--large {
        min-height: 0;
    }

    .area-map-pin {
        white-space: normal;
    }

    .area-map-pin {
        max-width: 145px;
        min-height: 44px;
        padding-inline: 11px;
        font-size: 0.78rem;
    }

    .coverage-map__legend {
        left: 12px;
        top: 12px;
        gap: 8px;
    }

    .coverage-map__legend span {
        min-height: 30px;
        padding-inline: 10px;
        font-size: 0.72rem;
    }

    .coverage-map__labels text {
        font-size: 22px;
    }

    .coverage-map__labels text:nth-child(4) {
        font-size: 16px;
    }

    .service-area-map {
        min-height: 720px;
    }

    .service-area-map__panel {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
    }

    .final-cta__inner,
    .home-cta__inner,
    .about-cta__inner,
    .review-submit-cta__inner,
    .areas-cta__inner,
    .emergency-banner__inner,
    .footer-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-page .site-footer {
        padding-bottom: 118px;
    }

    .mobile-call-now {
        position: fixed;
        right: 14px;
        bottom: 14px;
        left: 14px;
        z-index: 950;
        display: flex;
        min-height: 58px;
        align-items: center;
        justify-content: center;
        background: var(--color-accent);
        border: 2px solid rgba(27, 27, 27, 0.08);
        border-radius: var(--radius-sm);
        box-shadow: 0 16px 38px rgba(7, 26, 37, 0.22);
        color: var(--color-text);
        font-weight: 900;
    }

    .mobile-call-now:hover {
        color: var(--color-text);
    }

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

    .platform-logo {
        flex: 1 1 150px;
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links--split {
        grid-template-columns: 1fr;
    }

    .footer-contact,
    .footer-hours {
        padding-top: 0;
    }

    .footer-quote-link {
        width: 100%;
    }

    .footer-bottom nav {
        justify-content: flex-start;
    }

    .media-frame img {
        min-height: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
