﻿/* =========================================================================
   Emergency Services 24H â€” sitewide stylesheet
   UK trust palette, mobile-first, no framework.
   ========================================================================= */

:root {
    --color-navy: #0B2545;
    --color-navy-light: #16345f;
    --color-red: #D7263D;
    --color-red-dark: #b31c30;
    --color-gold: #F5A623;
    --color-bg: #F7F8FA;
    --color-surface: #FFFFFF;
    --color-text: #1C1F26;
    --color-text-muted: #4b5160;
    --color-green: #2E7D32;
    --color-border: #E3E6EC;

    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 37, 69, 0.12);

    --container-width: 1180px;
    --call-bar-height: 64px;
}

/* ---------------------------------------------------------------------
   Reset & base
   --------------------------------------------------------------------- */

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.55;
    padding-bottom: var(--call-bar-height);
}

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

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

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5em; color: var(--color-navy); }

h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

.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;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--color-navy);
    color: #fff;
    padding: 0.75em 1em;
    z-index: 200;
}
.skip-link:focus { left: 0; }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ---------------------------------------------------------------------
   Header & nav
   --------------------------------------------------------------------- */

.site-header {
    background: var(--color-navy);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.site-header__logo {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.site-header__logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.site-header__phone {
    display: none;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.05rem;
}

.site-header__toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 0.4rem;
    display: inline-flex;
    cursor: pointer;
}

.site-nav {
    display: none;
    flex-direction: column;
    background: var(--color-navy-light);
    border-top: 1px solid rgba(255,255,255,0.12);
}
.site-nav.is-open { display: flex; }

.site-nav__list {
    display: flex;
    flex-direction: column;
}

.site-nav__item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav__item > a {
    display: block;
    padding: 0.9rem 1.25rem;
    color: #fff;
    font-weight: 600;
}

.site-nav__submenu {
    display: none;
    background: rgba(0,0,0,0.15);
}
.site-nav__submenu li a {
    display: block;
    padding: 0.6rem 1.25rem 0.6rem 2.25rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
}
.site-nav__item--has-menu:hover .site-nav__submenu,
.site-nav__item--has-menu:focus-within .site-nav__submenu,
.site-nav__item--has-menu.is-open .site-nav__submenu {
    display: block;
}

.site-nav__cta {
    display: block;
    margin: 1rem 1.25rem 1.25rem;
    background: var(--color-red);
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
}

@media (min-width: 900px) {
    .site-header__phone { display: inline-flex; }
    .site-header__toggle { display: none; }

    .site-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: var(--color-navy);
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 0 1.25rem;
        max-width: var(--container-width);
        margin: 0 auto;
    }
    .site-nav__list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .site-nav__item { border-bottom: none; position: relative; }
    .site-nav__item > a { padding: 0.85rem 0.9rem; font-size: 0.95rem; }
    .site-nav__submenu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 260px;
        max-height: 60vh;
        overflow-y: auto;
        background: var(--color-navy-light);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: var(--shadow-md);
        z-index: 50;
    }
    .site-nav__cta {
        margin: 0;
        padding: 0.6rem 1.1rem;
    }
}

/* ---------------------------------------------------------------------
   Trust strip
   --------------------------------------------------------------------- */

.trust-strip {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}
.trust-strip__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0.65rem 1.25rem;
    display: none;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-navy);
    justify-content: center;
}
.trust-strip__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

@media (min-width: 700px) {
    .trust-strip__inner { display: flex; justify-content: flex-start; }
}

/* ---------------------------------------------------------------------
   Breadcrumbs
   --------------------------------------------------------------------- */

.breadcrumbs {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
}
.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}
.breadcrumbs__item {
    display: flex;
    align-items: center;
}
.breadcrumbs__item a {
    color: var(--color-navy);
    font-weight: 600;
}
.breadcrumbs__item a:hover { text-decoration: underline; }
.breadcrumbs__item [aria-current="page"] {
    color: var(--color-text-muted);
    font-weight: 600;
}
.breadcrumbs__sep {
    margin: 0 0.5rem;
    color: var(--color-text-muted);
    opacity: 0.6;
}

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}
.btn--primary {
    background: var(--color-red);
    color: #fff;
}
.btn--primary:hover { background: var(--color-red-dark); }
.btn--outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */

.hero {
    background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: #fff;
    padding: 2.75rem 0 3.25rem;
    overflow: hidden;
}
.hero__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: end;
}
@media (min-width: 800px) {
    .hero__inner { grid-template-columns: 1fr 1.1fr; gap: 2rem; }
}
.hero__media {
    display: flex;
    justify-content: center;
    /* Grounds the photo at the very bottom edge of the hero band
       by eating into the section's own bottom padding. */
    margin-bottom: -3.25rem;
}
@media (min-width: 800px) {
    .hero__media { justify-content: flex-end; }
}
.hero__media img {
    width: 100%;
    max-width: 620px;
}
.hero__facts {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.hero__fact {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.14);
}
.hero__fact:last-child { border-bottom: none; padding-bottom: 0; }
.hero__fact-label { font-size: 0.85rem; color: rgba(255,255,255,0.72); }
.hero__fact-value { font-weight: 800; color: var(--color-gold); font-size: 1.1rem; text-align: right; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(46,125,50,0.18);
    border: 1px solid var(--color-green);
    color: #A8E6A3;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.hero__badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-green);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.3);
}
.hero h1 { color: #fff; max-width: 20ch; }
.hero__lede {
    font-size: 1.05rem;
    max-width: 56ch;
    color: rgba(255,255,255,0.88);
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}
.hero__reassurance {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
}

/* ---------------------------------------------------------------------
   Sections
   --------------------------------------------------------------------- */

.section {
    padding: clamp(2.75rem, 5vw, 4.5rem) 0;
    border-bottom: 1px solid var(--color-border);
}
.section:last-of-type { border-bottom: none; }
.section--alt { background: var(--color-surface); }
.section__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Every section opens with the same eyebrow + heading + intro block, so
   giving it one wrapper keeps the gap before the content grid consistent
   instead of relying on each grid's own margin-top. */
.section__header {
    max-width: 62ch;
    margin-bottom: 2.25rem;
}
.section__header h2 { margin-bottom: 0.6rem; }
.section__intro { max-width: 62ch; margin-bottom: 0; color: var(--color-text-muted); }
.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--color-red);
    margin-bottom: 0.6rem;
}
.section__eyebrow::before {
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 2px;
    background: var(--color-red);
}

/* ---------------------------------------------------------------------
   Text / media split
   --------------------------------------------------------------------- */

.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 800px) {
    .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.split__text .section__eyebrow { margin-bottom: 0.6rem; }
.split__text p { color: var(--color-text-muted); }
.split__list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 1.25rem 0 1.5rem;
}
.split__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-weight: 600;
    color: var(--color-navy);
}
.split__list li::before {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 0.15em;
    border-radius: 50%;
    background: rgba(46,125,50,0.14);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' stroke='%232E7D32' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}
.split__media-placeholder {
    aspect-ratio: 4 / 3;
    width: 100%;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--color-border);
    background: var(--color-surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--color-text-muted);
    text-align: center;
    padding: 1.5rem;
}
.split__media-placeholder span { font-size: 0.85rem; max-width: 22ch; }
.split__media-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ---------------------------------------------------------------------
   Service cards
   --------------------------------------------------------------------- */

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 700px) {
    .card-grid--2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
    .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.service-card__icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: rgba(215,38,61,0.1);
    color: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card__cert {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-navy);
    background: rgba(245,166,35,0.14);
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    width: fit-content;
}
.service-card__link {
    margin-top: auto;
    font-weight: 700;
    color: var(--color-red);
}

/* ---------------------------------------------------------------------
   Icon tiles (compact service grid)
   --------------------------------------------------------------------- */

@media (min-width: 600px) {
    .card-grid--5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 800px) {
    .card-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
    .card-grid--5 { grid-template-columns: repeat(5, 1fr); }
}

.icon-tile {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.55rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
a.icon-tile:hover,
a.icon-tile:focus-visible {
    border-color: var(--color-navy);
    box-shadow: var(--shadow-sm);
}
.icon-tile__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(215,38,61,0.1);
    color: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-tile__label { font-weight: 700; color: var(--color-navy); font-size: 0.95rem; margin: 0; }
.icon-tile__desc { color: var(--color-text-muted); font-size: 0.82rem; margin: 0; line-height: 1.5; }
.icon-tile__link {
    margin-top: auto;
    padding-top: 0.4rem;
    font-weight: 700;
    color: var(--color-red);
    font-size: 0.82rem;
}

/* ---------------------------------------------------------------------
   Region coverage grid (region card + named town chips)
   --------------------------------------------------------------------- */

.region-coverage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 800px) {
    .region-coverage-grid { grid-template-columns: repeat(2, 1fr); }
}

.region-coverage-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}
.region-coverage-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.region-coverage-card__name {
    font-weight: 700;
    color: var(--color-navy);
    font-size: 1.15rem;
}
.region-coverage-card__name:hover { text-decoration: underline; }
.region-coverage-card__count {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-navy);
    background: rgba(245,166,35,0.14);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    white-space: nowrap;
}
.region-coverage-card__towns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.town-chip {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
}

/* ---------------------------------------------------------------------
   Review carousel
   --------------------------------------------------------------------- */

.review-carousel__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
}
.review-carousel__track::-webkit-scrollbar { display: none; }

.review-card {
    position: relative;
    flex: 0 0 min(300px, 82vw);
    scroll-snap-align: start;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    box-shadow: var(--shadow-sm);
}
.review-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    background: var(--color-bg);
    border: 1px dashed var(--color-border);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}
.review-card__person {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding-right: 5.5rem;
}
.review-card__avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(11,37,69,0.08);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-card__person-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.review-card__name { font-weight: 700; color: var(--color-navy); font-size: 0.92rem; }
.review-card__location { font-size: 0.8rem; color: var(--color-text-muted); }
.review-card__stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 0.15em;
}
.review-card__quote {
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 0;
}
.review-card__photo {
    margin-top: auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    border: 2px dashed var(--color-border);
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: var(--color-text-muted);
}
.review-card__photo span { font-size: 0.72rem; }
.review-card__photo--image {
    border: none;
    background: none;
    object-fit: cover;
    width: 100%;
}

.review-carousel__controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.review-carousel__btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.review-carousel__btn:hover { background: var(--color-bg); border-color: var(--color-navy); }

/* ---------------------------------------------------------------------
   How it works / steps
   --------------------------------------------------------------------- */

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    counter-reset: step;
}
@media (min-width: 700px) {
    .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
}
.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--color-navy);
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

/* ---------------------------------------------------------------------
   Why choose us / stats
   --------------------------------------------------------------------- */

.stat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 700px) {
    .stat-row { grid-template-columns: repeat(4, 1fr); }
}
.stat {
    background: var(--color-navy);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    text-align: center;
}
.stat__value {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--color-gold);
}
.stat__label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* ---------------------------------------------------------------------
   FAQ accordion
   --------------------------------------------------------------------- */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.faq-item__question {
    width: 100%;
    list-style: none;
    padding: 1.1rem 1.25rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__icon { flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
    padding: 0 1.25rem 1.1rem;
    color: var(--color-text-muted);
}

/* ---------------------------------------------------------------------
   Final CTA band
   --------------------------------------------------------------------- */

.cta-band {
    background: var(--color-red);
    color: #fff;
    text-align: center;
    padding: 2.75rem 1.25rem;
}
.cta-band h2 { color: #fff; }
.cta-band .btn--outline:hover { background: rgba(255,255,255,0.12); }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */

.site-footer {
    background: var(--color-navy);
    color: rgba(255,255,255,0.85);
    padding: 2.5rem 0 6rem;
}
.site-footer__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 700px) {
    .site-footer__inner { grid-template-columns: 1.3fr 1fr 1fr; }
}
.site-footer__heading {
    color: #fff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.85rem;
}
.site-footer__col--brand .site-footer__heading {
    text-transform: none;
    font-size: 1.15rem;
    letter-spacing: normal;
}
.site-footer__list li { margin-bottom: 0.45rem; font-size: 0.9rem; }
.site-footer__list a:hover { color: var(--color-gold); }
.site-footer__list--columns {
    column-count: 2;
    column-gap: 1.25rem;
}
.site-footer__phone {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.1rem;
}
.site-footer__note { font-size: 0.82rem; margin-top: 0.5rem; }
.site-footer__bottom {
    max-width: var(--container-width);
    margin: 2rem auto 0;
    padding: 1.25rem 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
}

/* ---------------------------------------------------------------------
   About page: centred intro band
   --------------------------------------------------------------------- */

.about-hero {
    background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: #fff;
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    text-align: center;
}
.about-hero__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-hero h1 { color: #fff; }
.about-hero__lede {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 1.75rem;
    
}
.section__eyebrow--on-dark { color: var(--color-gold); }
.section__eyebrow--on-dark::before { background: var(--color-gold); }

/* ---------------------------------------------------------------------
   About page: what we are / what we're not
   --------------------------------------------------------------------- */

.compare-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 700px) {
    .compare-grid { grid-template-columns: 1fr 1fr; }
}
.compare-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border-top: 4px solid var(--color-border);
}
.compare-card--yes { border-top-color: var(--color-green); }
.compare-card--no { border-top-color: var(--color-text-muted); }
.compare-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}
.compare-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}
.compare-card--yes li::before {
    content: "";
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0.15em;
    border-radius: 50%;
    background: rgba(46,125,50,0.14);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' stroke='%232E7D32' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}
.compare-card--no li::before {
    content: "";
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0.15em;
    border-radius: 50%;
    background: var(--color-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 12h12' stroke='%234b5160' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

/* ---------------------------------------------------------------------
   About page: vertical timeline
   --------------------------------------------------------------------- */

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 0.95rem;
    border-left: 2px solid var(--color-border);
}
.timeline__item {
    position: relative;
    padding: 0 0 2rem 2rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item h3 { margin-bottom: 0.35rem; }
.timeline__item p { margin-bottom: 0; color: var(--color-text-muted); }
.timeline__dot {
    position: absolute;
    left: -1.05rem;
    top: 0;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: var(--color-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    border: 3px solid var(--color-bg);
}

/* ---------------------------------------------------------------------
   About page: standards pillars
   --------------------------------------------------------------------- */

.pillar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 700px) {
    .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
    .pillar-grid { grid-template-columns: repeat(4, 1fr); }
}
.pillar {
    background: var(--color-navy);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.pillar__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245,166,35,0.18);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pillar h3 { color: #fff; margin-bottom: 0; }
.pillar p { color: rgba(255,255,255,0.78); font-size: 0.88rem; margin-bottom: 0; }

/* ---------------------------------------------------------------------
   Pricing table
   --------------------------------------------------------------------- */

.region-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.75rem;
}

.pricing-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
}
.pricing-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.pricing-table thead th {
    background: var(--color-navy);
    color: #fff;
    text-align: left;
    padding: 0.9rem 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}
.pricing-table thead th span {
    display: block;
    font-weight: 500;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.15rem;
}
.pricing-table tbody th {
    text-align: left;
    padding: 0.85rem 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
    white-space: nowrap;
}
.pricing-table td {
    padding: 0.85rem 1.1rem;
    color: var(--color-text);
    white-space: nowrap;
}
.pricing-table tbody tr:nth-child(even) { background: var(--color-bg); }
.pricing-table tbody tr:hover { background: rgba(215,38,61,0.06); }

.pricing-note {
    margin: 1.5rem 0 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ---------------------------------------------------------------------
   Sticky mobile call bar
   --------------------------------------------------------------------- */

.call-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    height: var(--call-bar-height);
    z-index: 150;
    background: var(--color-red);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.18);
}
.call-bar__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    height: 100%;
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

@media (min-width: 900px) {
    .call-bar { display: none; }
    body { padding-bottom: 0; }
}
