:root {
    --black: #001226;
    --ink: #071a35;
    --muted: #53657a;
    --blue-950: #001235;
    --blue-900: #002050;
    --blue-800: #06366f;
    --blue-700: #176ab6;
    --blue-600: #2c82cf;
    --blue-400: #4090d0;
    --blue-100: #d8eafa;
    --blue-50: #f3f8fd;
    --white: #ffffff;
    --line: #c9d8e8;
    --soft: #f6faff;
    --success: #176ab6;
    --danger: #53657a;
    --shadow: 0 24px 70px rgba(0, 18, 38, 0.13);
    --shadow-soft: 0 14px 36px rgba(0, 32, 80, 0.09);
    --font-size-xs: 0.8rem;
    --font-size-sm: 0.9rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Aptos, "Segoe UI", Inter, Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 50;
    padding: 10px 14px;
    background: var(--white);
    color: var(--blue-900);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.skip-link:focus {
    top: 16px;
}

.topbar {
    background: var(--blue-950);
    color: var(--white);
    font-size: var(--font-size-xs);
}

.topbar__inner {
    min-height: 32px;
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
}

.topbar a {
    color: var(--white);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
}

.topbar__message {
    letter-spacing: 0.01em;
    font-weight: var(--font-weight-semibold);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--white);
    border-bottom: 1px solid rgba(201, 216, 232, 0.85);
    backdrop-filter: none;
}

.navbar {
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    margin-right: auto;
}

.brand__mark {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-400));
    color: var(--white);
    font-weight: var(--font-weight-bold);
    box-shadow: 0 12px 26px rgba(0, 32, 80, 0.24);
}

.brand__logo {
    width: min(260px, 36vw);
    max-height: 64px;
    object-fit: contain;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    color: var(--black);
    font-size: var(--font-size-base);
}

.brand small {
    color: var(--muted);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
}

.nav-menu a {
    text-decoration: none;
    color: var(--ink);
    padding: 8px 9px;
    border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--blue-700);
    background: var(--blue-50);
}

.nav-toggle,
.filters-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    background: var(--white);
    color: var(--black);
    font-weight: var(--font-weight-semibold);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 2px solid var(--blue-700);
    border-radius: 8px;
    background: var(--blue-700);
    color: var(--white);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 32, 80, 0.22);
    background: var(--blue-600);
    border-color: var(--blue-600);
}

.button--small {
    min-height: 38px;
    padding: 7px 14px;
    white-space: nowrap;
}

.button--light {
    background: var(--white);
    border-color: var(--white);
    color: var(--blue-900);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.button--outline {
    background: var(--white);
    border-color: var(--line);
    color: var(--blue-800);
}

.button--outline:hover {
    background: var(--blue-50);
    border-color: var(--blue-400);
    color: var(--blue-900);
}

.button--wide {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 760px;
    color: var(--black);
    isolation: isolate;
    display: grid;
    align-items: center;
    background: var(--blue-950);
    overflow: hidden;
}

.hero__image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(246, 250, 255, 0.98) 0%, rgba(246, 250, 255, 0.9) 38%, rgba(246, 250, 255, 0.28) 58%, rgba(246, 250, 255, 0.03) 100%),
        url('../images/real/trust-keys-paperwork.jpg') right center / cover no-repeat;
    z-index: -1;
}

.hero::after {
    content: none;
}

.hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
    gap: 38px;
    align-items: center;
    padding: 82px 0;
}

.hero h1,
.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 5vw, 4.25rem);
    line-height: 1.05;
}

.hero h1 {
    max-width: 700px;
    color: var(--blue-700);
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0;
}

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

.hero__copy p:not(.eyebrow) {
    max-width: 560px;
    color: var(--black);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
}

.hero__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
    max-width: 720px;
    padding: 8px;
    border: 1px solid rgba(64, 144, 208, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 28px rgba(0, 32, 80, 0.1);
}

.hero__benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: var(--black);
    font-weight: var(--font-weight-semibold);
    white-space: nowrap;
}

.hero__benefits span::before {
    content: "\2713";
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--blue-700);
    color: var(--white);
    font-weight: var(--font-weight-bold);
}

.button-row,
.contact-strip__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.quick-search,
.filters,
.vehicle-card,
.placeholder-form,
.contact-card,
.info-panel,
.map-placeholder,
.empty-state,
.cards-two article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.quick-search {
    color: var(--ink);
    padding: 26px;
    border-top: 5px solid var(--blue-400);
}

.quick-search h2 {
    margin: 0 0 18px;
    color: var(--black);
}

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

label {
    display: grid;
    gap: 7px;
    color: var(--black);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 12px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(64, 144, 208, 0.25);
    border-color: var(--blue-400);
}

textarea {
    resize: vertical;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--blue-600);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    font-size: var(--font-size-xs);
}

.cta-band .eyebrow {
    color: var(--blue-100);
}

.hero .eyebrow {
    color: var(--black);
}

.section {
    padding: 76px 0;
}

.section--compact {
    padding: 42px 0;
}

.section--soft,
.page-hero {
    background:
        radial-gradient(circle at 15% 5%, rgba(64, 144, 208, 0.18), transparent 30%),
        var(--soft);
}

.page-hero {
    position: relative;
    padding: 78px 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%),
        url('../images/real/trust-keys-paperwork.jpg') right center / cover no-repeat;
}

.page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 26px;
    background: var(--blue-950);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero__content {
    max-width: 720px;
}

.page-hero__image {
    min-height: 260px;
    border-radius: 8px;
    background: var(--blue-50) center / cover no-repeat;
    box-shadow: var(--shadow-soft);
}

.page-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: var(--font-size-lg);
}

.page-hero--finance {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/finance-paperwork.jpg');
}

.page-hero--part-exchange {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/part-exchange-handover.jpg');
}

.page-hero--sell {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/sell-car-valuation.jpg');
}

.page-hero--warranty {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/warranty-inspection.jpg');
}

.page-hero--about {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/customer-enquiry.jpg');
}

.page-hero--contact {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/contact-directions.jpg');
}

.page-hero--buying-guide {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/buying-checklist.jpg');
}

.page-hero--checklist {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/checklist-tyre-check.jpg');
}

.page-hero--finance-guide {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/finance-guide-budget.jpg');
}

.page-hero--used-cars {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/stock-browse.jpg');
}

.page-hero--local {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/trust-keys-paperwork.jpg');
}

.page-hero--vehicle {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/vehicle-detail-enquiry.jpg');
}

.page-hero--faq {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/faq-help.jpg');
}

.page-hero--privacy {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/privacy-data.jpg');
}

.page-hero--terms {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 62%, rgba(255, 255, 255, 0.04) 100%), url('../images/real/terms-agreement.jpg');
}

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

.trust-card {
    min-height: 228px;
    border: 1px solid var(--line);
    border-radius: 18px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 24px;
    font-weight: var(--font-weight-semibold);
    background: linear-gradient(145deg, var(--white), var(--blue-50));
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.trust-card__icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(145deg, var(--blue-900), var(--blue-600));
    border: 1px solid rgba(64, 144, 208, 0.42);
    box-shadow: 0 14px 30px rgba(0, 32, 80, 0.18);
}

.trust-card__icon img {
    width: 66px;
    height: 66px;
}

.trust-card__label {
    display: block;
    color: var(--blue-950);
    font-size: 1.1rem;
    line-height: 1.25;
}

.trust-card p {
    margin: 0;
    color: var(--muted);
}

.image-card,
.icon-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.image-card {
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-card {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.trust-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--blue-50);
    color: var(--blue-700);
}

.trust-icon img,
.trust-icon svg {
    width: 26px;
    height: 26px;
}

.image-showcase-section {
    padding-top: 36px;
}

.image-showcase {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 28px;
    align-items: center;
}

.showcase-copy {
    padding-right: 16px;
}

.showcase-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.02;
}

.showcase-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: var(--font-size-lg);
}

.showcase-gallery {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(2, minmax(170px, 1fr));
    gap: 14px;
}

.showcase-card {
    position: relative;
    min-height: 190px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    background: var(--blue-900);
    box-shadow: var(--shadow);
}

.showcase-card--large {
    grid-row: 1 / 3;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.showcase-card:hover img {
    transform: scale(1.035);
}

.showcase-card:hover .aa-vehicle-overlay,
.vehicle-card:hover .aa-vehicle-overlay {
    transform: none;
}

.showcase-card span {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border-radius: 8px;
    padding: 10px 12px;
    background: rgba(0, 18, 38, 0.78);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
}

.section-heading,
.results-bar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    line-height: 1.05;
}

.section-heading a,
.footer-links a {
    color: var(--blue-600);
    font-weight: var(--font-weight-semibold);
}

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

.vehicle-card {
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.vehicle-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    display: block;
    background: var(--blue-900);
    overflow: hidden;
}

.vehicle-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.24s ease;
}

.aa-vehicle-overlay {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 4;
    width: clamp(110px, 35%, 150px);
    height: auto;
    border: 1px solid rgba(0, 18, 38, 0.22);
    border-radius: 4px;
    object-fit: contain;
    box-shadow: 0 8px 18px rgba(0, 18, 38, 0.22);
}

.vehicle-card__image .aa-vehicle-overlay {
    width: clamp(110px, 35%, 150px);
    height: auto;
    object-fit: contain;
}

.showcase-card .aa-vehicle-overlay {
    top: 12px;
    bottom: auto;
    width: clamp(110px, 35%, 150px);
    height: auto;
}

.vehicle-card__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
}

.vehicle-card__image:hover .vehicle-card__video,
.vehicle-card__image:focus .vehicle-card__video {
    opacity: 1;
}

.vehicle-card__video-label {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(0, 18, 38, 0.78);
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
}

.vehicle-card:hover img {
    transform: scale(1.04);
}

.vehicle-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    background: var(--blue-50);
}

.vehicle-card__placeholder--large {
    min-height: 520px;
}

.vehicle-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: 999px;
    padding: 7px 11px;
    background: var(--success);
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 10px 20px rgba(0, 18, 38, 0.18);
}

.vehicle-card__badge.reserved {
    background: var(--blue-800);
}

.vehicle-card__badge.sold {
    background: var(--danger);
}

.vehicle-card__body {
    padding: 19px;
    display: grid;
    gap: 14px;
}

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

.vehicle-card__eyebrow {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
}

.vehicle-card h3 {
    margin: 0;
    font-size: var(--font-size-lg);
    line-height: 1.22;
}

.vehicle-card h3 a {
    text-decoration: none;
}

.vehicle-card__price,
.vehicle-summary__price {
    margin: 0;
    color: var(--blue-700);
    font-size: 1.9rem;
    font-weight: var(--font-weight-bold);
}

.vehicle-summary__pricing {
    display: grid;
    gap: 3px;
    margin: 0 0 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, var(--white), var(--blue-50));
}

.vehicle-summary__price-label {
    margin: 0;
    color: var(--muted);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
}

.preparation-fee {
    margin-top: 6px;
}

.preparation-fee summary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    color: var(--blue-900);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    list-style: none;
}

.preparation-fee summary::-webkit-details-marker {
    display: none;
}

.preparation-fee summary:hover span:first-child {
    color: var(--blue-700);
}

.preparation-fee__icon {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 18px;
    border-radius: 999px;
    background: var(--blue-900);
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.preparation-fee__content {
    display: grid;
    gap: 10px;
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: var(--font-size-sm);
}

.preparation-fee__content p {
    margin: 0;
}

.preparation-fee__content ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.preparation-fee__content li {
    position: relative;
    padding-left: 24px;
    color: var(--ink);
    font-weight: var(--font-weight-medium);
}

.preparation-fee__content li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 1px;
    width: 17px;
    height: 17px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--blue-100);
    color: var(--blue-800);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
}

.vehicle-card__specs,
.spec-grid {
    display: grid;
    gap: 10px;
    margin: 0;
}

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

.vehicle-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vehicle-card__badges span {
    border-radius: 999px;
    padding: 6px 9px;
    background: var(--blue-50);
    color: var(--blue-900);
    border: 1px solid var(--line);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
}

.vehicle-card__badges .cash-only {
    background: var(--blue-950);
    border-color: var(--blue-950);
    color: var(--white);
}

.vehicle-card__notice {
    margin: 0;
    color: var(--blue-900);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

dt {
    color: var(--muted);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
}

dd {
    margin: 0;
    font-weight: var(--font-weight-semibold);
}

.split,
.form-page,
.contact-grid,
.vehicle-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: 36px;
    align-items: start;
}

.split h2,
.form-page h2,
.detail-content h2,
.cards-two h2 {
    color: var(--black);
}

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

.feature-list div {
    border-left: 5px solid var(--blue-400);
    padding: 18px;
    background: var(--blue-50);
    border-radius: 8px;
}

.feature-list strong,
.feature-list span {
    display: block;
}

.feature-list span {
    color: var(--muted);
}

.cta-band {
    background:
        radial-gradient(circle at 84% 18%, rgba(64, 144, 208, 0.3), transparent 28%),
        linear-gradient(135deg, var(--black), var(--blue-900));
    color: var(--white);
    padding: 58px 0;
}

.cta-band__inner,
.contact-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-band h2,
.contact-strip h2 {
    margin: 0 0 8px;
}

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

.cards-two--inline {
    max-width: none;
}

.cards-two article,
.empty-state,
.placeholder-form,
.contact-card,
.info-panel,
.map-placeholder {
    padding: 26px;
}

.contact-strip {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.stock-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 26px;
}

.filters {
    position: sticky;
    top: 104px;
    padding: 20px;
    box-shadow: none;
}

.filters__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.filters h2 {
    margin: 0 0 14px;
}

.filters__body {
    display: grid;
    gap: 14px;
}

.checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox input {
    width: auto;
}

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

.notice {
    color: var(--blue-900);
    background: var(--blue-100);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.notice--warning {
    background: #fff7e3;
    border-color: #f1d28a;
    color: var(--ink);
}

.finance-disclaimer {
    width: 100%;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
}

.vehicle-detail {
    padding: 52px 0 28px;
    background: var(--soft);
}

.gallery__main {
    border-radius: 8px;
    overflow: hidden;
    background: var(--blue-900);
    box-shadow: var(--shadow);
}

.gallery__stage {
    position: relative;
}

.gallery__stage .aa-vehicle-overlay--detail {
    width: clamp(140px, 27%, 210px);
    height: auto;
}

.gallery__main img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.gallery__video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    border: 0;
    background: var(--black);
    object-fit: cover;
}

.partner-trust-section {
    padding-top: 0;
}

.partner-trust-card {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
    gap: 24px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.partner-trust-card__banner,
.partner-promo-card__image {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.partner-trust-card h2,
.partner-promo-card h2 {
    margin-top: 0;
}

.partner-promo-card {
    overflow: hidden;
}

.partner-promo-card__image {
    margin-bottom: 20px;
}

.partner-warranty-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 28px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-top: 4px solid #f45124;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff8f4, var(--white));
    box-shadow: var(--shadow-soft);
}

.partner-warranty-card__image {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.partner-warranty-card h2 {
    margin-top: 0;
}

.gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.gallery__thumbs button {
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.gallery__thumbs button:hover {
    border-color: var(--blue-400);
}

.gallery__thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.gallery__video-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
}

.vehicle-summary {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.vehicle-summary h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.04;
}

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

.spec-grid div {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    background: var(--blue-50);
}

.cta-panel {
    display: grid;
    gap: 10px;
}

.cta-panel .finance-disclaimer {
    margin: 0;
}

.detail-content {
    display: grid;
    gap: 22px;
}

.detail-content article,
.prose {
    max-width: 920px;
}

.feature-columns {
    columns: 2;
    padding-left: 20px;
}

.feature-columns li {
    break-inside: avoid;
    margin-bottom: 8px;
}

.placeholder-form {
    display: grid;
    gap: 14px;
    box-shadow: var(--shadow-soft);
}

.enquiry-form {
    display: grid;
    gap: 14px;
}

.enquiry-form h2,
.enquiry-form p {
    margin: 0;
}

.enquiry-form p {
    color: var(--muted);
}

.enquiry-form .notice {
    color: var(--blue-900);
}

.form-note {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
}

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

.vehicle-enquiry-panel {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

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

.clean-list li {
    position: relative;
    padding-left: 28px;
    color: var(--ink);
    font-weight: var(--font-weight-medium);
}

.clean-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--blue-100);
    color: var(--blue-800);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
}

.contact-grid {
    grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
}

.map-placeholder {
    grid-column: 1 / -1;
    min-height: 260px;
    display: grid;
    place-items: center;
    text-align: center;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62)),
        url('../images/hero-contact.svg') center / cover no-repeat;
    box-shadow: none;
}

.prose h2 {
    margin-top: 30px;
}

.site-footer {
    background:
        radial-gradient(circle at 10% 0%, rgba(64, 144, 208, 0.22), transparent 32%),
        var(--black);
    color: rgba(255, 255, 255, 0.84);
    padding: 58px 0 30px;
}

.site-footer a {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.1fr) minmax(190px, 0.85fr) minmax(140px, 0.75fr) minmax(165px, 0.85fr) minmax(240px, 1.2fr);
    gap: 24px;
}

.site-footer h2,
.site-footer h3 {
    color: var(--white);
    margin-top: 0;
}

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

.footer-hours li {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: space-between;
    align-items: center;
    column-gap: 18px;
}

.footer-hours span {
    white-space: nowrap;
}

.fine-print {
    font-size: var(--font-size-xs);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin-top: 34px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

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

.review-card,
.team-card,
.area-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.reviews-intro {
    max-width: 780px;
    margin: -8px 0 20px;
    color: var(--muted);
}

.review-card--placeholder {
    background: linear-gradient(135deg, var(--white), var(--blue-50));
}

.review-card span {
    color: var(--blue-700);
    font-weight: var(--font-weight-semibold);
}

.team-card__placeholder {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    color: var(--white);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.04em;
}

.area-grid article {
    min-height: 190px;
}

.area-grid h3 a {
    text-decoration: none;
    color: var(--blue-900);
}

.cookie-banner {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 45;
    width: min(520px, calc(100% - 32px));
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.cookie-banner p {
    margin: 0 0 12px;
}

.cookie-banner div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

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

.check-list {
    padding-left: 20px;
}

.whatsapp-chat {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 999px;
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(0, 18, 38, 0.26);
    border: 3px solid var(--white);
    transition: transform 0.18s ease, background 0.18s ease;
}

.whatsapp-chat:hover {
    background: #1fb95a;
    transform: translateY(-2px);
}

.whatsapp-chat__icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

code {
    background: var(--blue-50);
    border-radius: 6px;
    padding: 2px 5px;
}

.filter-intro {
    margin: -4px 0 16px;
    color: var(--muted);
    font-size: var(--font-size-sm);
}

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

.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--black);
    font-weight: var(--font-weight-semibold);
    list-style-position: inside;
}

.faq-item p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--muted);
}

.step-list {
    counter-reset: steps;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 0;
}

.step-list li {
    counter-increment: steps;
    position: relative;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 54px 18px 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

/* Editorial subpage layout */
.page-intro {
    align-items: stretch;
}

.page-intro > :first-child {
    align-self: center;
}

.editorial-card,
.partner-feature {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 16px 44px rgba(0, 32, 80, 0.11);
}

.editorial-card {
    display: grid;
    grid-template-rows: minmax(240px, 1fr) auto;
}

.editorial-card img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

.editorial-card--landscape img {
    min-height: 220px;
}

.editorial-card__body {
    padding: 24px 26px 26px;
    border-top: 4px solid var(--blue-600);
    background: linear-gradient(145deg, var(--white), var(--blue-50));
}

.editorial-card__body h2,
.partner-feature h2 {
    margin-top: 0;
    color: var(--blue-950);
}

.editorial-card__body p:last-child,
.feature-grid article p:last-child,
.partner-feature__content > p:last-child {
    margin-bottom: 0;
}

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

.feature-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid article {
    padding: 26px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--blue-600);
    border-radius: 18px;
    background: linear-gradient(145deg, var(--white), #f8fbff);
    box-shadow: 0 16px 44px rgba(0, 32, 80, 0.09);
}

.feature-grid__number {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--blue-600);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.feature-grid h3 {
    margin-top: 0;
    color: var(--blue-950);
}

.partner-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
}

.partner-feature__content {
    padding: 34px;
}

.partner-feature__image {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.feature-list--compact {
    margin-top: 24px;
}

.feature-list--compact div {
    padding: 16px 18px;
}

.contact-intro {
    grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
}

.contact-intro__form {
    padding: 30px;
}

.contact-visit {
    grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
    align-items: stretch;
}

.contact-visit__content {
    align-self: center;
}

.map-placeholder--compact {
    grid-column: auto;
    min-height: 340px;
}

.button--light {
    border-color: var(--white);
    background: var(--white);
    color: var(--blue-950);
}

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

@media (max-width: 980px) {
    .feature-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-feature,
    .contact-intro,
    .contact-visit {
        grid-template-columns: 1fr;
    }

    .partner-feature__image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 720px) {
    .feature-grid,
    .feature-grid--four {
        grid-template-columns: 1fr;
    }

    .editorial-card {
        grid-template-rows: auto auto;
    }

    .editorial-card img {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .editorial-card__body,
    .partner-feature__content,
    .contact-intro__form {
        padding: 22px;
    }

    .partner-feature__image {
        order: -1;
    }

    .cta-band__inner {
        align-items: flex-start;
    }
}

.step-list li::before {
    content: counter(steps);
    position: absolute;
    top: 16px;
    left: 18px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--blue-700);
    color: var(--white);
    font-weight: var(--font-weight-bold);
}

.step-list span {
    display: block;
    margin-bottom: 8px;
    color: var(--black);
    font-weight: var(--font-weight-semibold);
}

.step-list p {
    margin: 0;
    color: var(--muted);
}

.guide-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 28px;
    align-items: start;
}

.guide-layout .info-panel {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 10px;
}

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

.check-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.check-card h2 {
    margin-top: 0;
    font-size: var(--font-size-lg);
}

.check-card ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.brand-image {
    width: 100%;
    min-height: 220px;
    border-radius: 8px;
    margin-bottom: 22px;
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.brand-image--forecourt {
    background-image: url('../images/real/trust-keys-paperwork.jpg');
}

.brand-image--finance {
    background-image: url('../images/real/finance-guide-budget.jpg');
}

.brand-image--part-exchange {
    background-image: url('../images/real/sell-car-valuation.jpg');
}

.brand-image--sell {
    background-image: url('../images/real/part-exchange-handover.jpg');
}

.brand-image--workshop {
    background-image: url('../images/real/checklist-tyre-check.jpg');
}

.brand-image--guide {
    min-height: 290px;
    background-image: url('../images/real/checklist-tyre-check.jpg');
}

.brand-image--checklist {
    min-height: 290px;
    background-image: url('../images/real/buying-checklist.jpg');
}

.check-card--image {
    grid-column: span 2;
}

.check-card--image p {
    color: var(--muted);
}

@media (max-width: 1080px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 98px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .hero__content,
    .split,
    .form-page,
    .vehicle-detail__grid,
    .stock-layout,
    .contact-grid,
    .footer-grid,
    .image-showcase,
    .guide-layout {
        grid-template-columns: 1fr;
    }

    .step-list,
    .guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-layout .info-panel {
        position: static;
    }

    .hero {
        min-height: auto;
    }

    .showcase-copy {
        padding-right: 0;
    }

    .trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .filters {
        position: static;
    }

    .partner-trust-card,
    .partner-warranty-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

    .topbar__inner {
        justify-content: center;
        min-height: 32px;
        padding: 6px 0;
    }

    .navbar {
        min-height: 62px;
    }

    .navbar > .button {
        display: none;
    }

    .nav-menu {
        top: 94px;
    }

    .brand__mark {
        width: 42px;
        height: 42px;
    }

    .brand strong {
        font-size: var(--font-size-base);
    }

    .brand__logo {
        width: 166px;
        max-height: 54px;
    }

    .brand small {
        display: none;
    }

    .hero__content {
        padding: 54px 0;
    }

    .page-hero {
        background-position: center;
    }

    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 58%, rgba(255, 255, 255, 0.58) 100%);
        pointer-events: none;
    }

    .page-hero p {
        color: var(--ink);
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.45rem;
    }

    .form-grid,
    .trust-grid,
    .vehicle-grid,
    .vehicle-grid--stock,
    .review-grid,
    .team-grid,
    .area-grid,
    .cards-two,
    .spec-grid,
    .showcase-gallery,
    .step-list,
    .guide-grid,
    .vehicle-card__actions {
        grid-template-columns: 1fr;
    }

    .showcase-gallery {
        grid-template-rows: none;
    }

    .showcase-card--large {
        grid-row: auto;
    }

    .showcase-card {
        min-height: 250px;
    }

    .section {
        padding: 52px 0;
    }

    .section--compact {
        padding: 34px 0;
    }

    .cta-band__inner,
    .contact-strip,
    .section-heading,
    .results-bar,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .filters-toggle {
        display: inline-flex;
    }

    .filters__body {
        display: none;
    }

    .filters__body.is-open {
        display: grid;
    }

    .gallery__thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .vehicle-card__video {
        opacity: 1;
    }

    .aa-vehicle-overlay,
    .vehicle-card__image .aa-vehicle-overlay {
        left: 9px;
        bottom: 9px;
        width: clamp(104px, 38%, 132px);
    }

    .showcase-card .aa-vehicle-overlay {
        top: 9px;
        bottom: auto;
    }

    .gallery__stage .aa-vehicle-overlay--detail {
        width: clamp(125px, 42%, 165px);
    }

    .partner-trust-card,
    .partner-warranty-card {
        padding: 14px;
    }

    .feature-columns {
        columns: 1;
    }

    .whatsapp-chat {
        display: none;
    }

    .vehicle-summary .cta-panel {
        position: static;
        margin: 18px 0 0;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .vehicle-summary .button,
    .contact-strip__actions .button {
        width: 100%;
    }

    .contact-strip__actions {
        width: 100%;
        margin-top: 12px;
    }

    .footer-hours li {
        width: 100%;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .cookie-banner {
        left: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
    }

    .check-card--image {
        grid-column: auto;
    }
}

/* 2026 visual refresh */
.hero--modern {
    min-height: auto;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 15%, rgba(64, 144, 208, 0.42), transparent 32%),
        linear-gradient(135deg, var(--blue-950), var(--blue-900) 58%, #06366f);
}

.hero--modern .hero__content {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    padding: 70px 0 34px;
}

.hero--modern .hero__copy {
    position: relative;
    z-index: 2;
}

.hero--modern .eyebrow,
.hero--modern .hero__copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.82);
}

.hero--modern h1 {
    color: var(--white);
    font-size: clamp(3rem, 5.4vw, 5.5rem);
    letter-spacing: -0.035em;
}

.hero--modern h1 span {
    color: #8fc8f3;
}

.hero--modern .button--outline {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.hero--modern .hero__benefits {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(0, 18, 38, 0.42);
    box-shadow: none;
}

.hero--modern .hero__benefits span {
    color: var(--white);
}

.hero-vehicle {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    background: var(--blue-800);
    box-shadow: 0 35px 90px rgba(0, 8, 28, 0.45);
    text-decoration: none;
}

.hero-vehicle::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(0, 18, 38, 0.92));
}

.hero-vehicle > img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.hero-vehicle:hover > img {
    transform: scale(1.025);
}

.hero-vehicle__label {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--blue-900);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}

.hero-vehicle__details {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    color: var(--white);
}

.hero-vehicle__details strong {
    max-width: 70%;
    font-size: 1.35rem;
    line-height: 1.15;
}

.hero-vehicle__details b {
    font-size: 1.7rem;
}

.hero-vehicle--placeholder {
    background: url('../images/hero-home.svg') center / cover no-repeat, var(--blue-800);
}

.quick-search--hero {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
    margin-top: 2px;
    padding: 20px;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 8, 28, 0.26);
}

.quick-search--hero h2 {
    margin: 0 8px 10px 0;
    white-space: nowrap;
}

.quick-search--hero .form-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
}

.quick-search--hero .button {
    width: auto;
    min-width: 145px;
}

.partner-hub {
    display: grid;
    grid-template-columns: 0.72fr 1fr 1fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(135deg, var(--blue-950), var(--blue-900));
    box-shadow: var(--shadow);
}

.partner-hub__heading {
    align-self: center;
    padding: 18px 10px 18px 8px;
    color: var(--white);
}

.partner-hub__heading .eyebrow {
    color: #8fc8f3;
}

.partner-hub__heading h2 {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 3vw, 2.55rem);
    line-height: 1.04;
}

.partner-hub__heading p:last-child {
    color: rgba(255, 255, 255, 0.76);
}

.partner-hub__card {
    overflow: hidden;
    padding: 14px 14px 18px;
    border-radius: 17px;
    background: var(--white);
}

.partner-hub__card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 11px;
    object-fit: contain;
    background: #fff7f3;
}

.partner-hub__card--aa img {
    object-fit: contain;
    background: #ffd400;
}

.partner-hub__card h3 {
    margin: 17px 4px 8px;
}

.partner-hub__card p {
    margin: 0 4px 13px;
    color: var(--muted);
    font-size: var(--font-size-sm);
}

.partner-hub__card a {
    margin: 0 4px;
    color: var(--blue-700);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
}

.vehicle-card {
    border-radius: 18px;
    box-shadow: 0 15px 42px rgba(0, 32, 80, 0.09);
}

.vehicle-card__image {
    aspect-ratio: 16 / 10;
}

.vehicle-card__body {
    padding: 20px;
    gap: 15px;
}

.vehicle-card h3 {
    font-size: 1.22rem;
}

.vehicle-card__specs {
    grid-template-columns: 0.75fr 1.35fr 1fr;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.vehicle-card__actions .button:first-child {
    background: var(--blue-950);
    border-color: var(--blue-950);
    color: var(--white);
}

.gallery__main,
.vehicle-summary {
    border-radius: 20px;
}

.vehicle-detail__grid {
    grid-template-areas:
        "gallery summary"
        "priced summary";
}

.vehicle-detail__grid > .gallery {
    grid-area: gallery;
}

.vehicle-detail__grid > .vehicle-summary {
    grid-area: summary;
}

.vehicle-detail__priced {
    grid-area: priced;
    min-width: 0;
    padding-top: 6px;
}

.vehicle-detail__priced .section-heading {
    margin-bottom: 18px;
}

.vehicle-detail__priced .section-heading h2 {
    margin: 0;
    font-size: clamp(1.65rem, 2.5vw, 2.1rem);
}

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

.gallery__stage {
    border-radius: 20px;
    overflow: hidden;
}

.gallery__tools {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery__tools span,
.gallery__tools button {
    border: 0;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(0, 18, 38, 0.82);
    color: var(--white);
    font: inherit;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
}

.gallery__tools button,
.gallery__arrow {
    cursor: pointer;
}

.gallery__arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(0, 18, 38, 0.68);
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
}

.gallery__arrow--prev { left: 15px; }
.gallery__arrow--next { right: 15px; }

.gallery-lightbox {
    width: 100vw;
    max-width: none;
    height: 100vh;
    max-height: none;
    margin: 0;
    padding: 24px;
    border: 0;
    background: rgba(0, 10, 24, 0.97);
}

.gallery-lightbox[open] {
    display: grid;
    place-items: center;
}

.gallery-lightbox::backdrop {
    background: rgba(0, 10, 24, 0.92);
}

.gallery-lightbox img {
    max-width: min(1200px, 92vw);
    max-height: 86vh;
    object-fit: contain;
}

.gallery-lightbox__close,
.gallery-lightbox__arrow {
    position: fixed;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: rgba(0, 18, 38, 0.78);
    color: var(--white);
    cursor: pointer;
    font-size: 2rem;
}

.gallery-lightbox__close { top: 18px; right: 18px; }
.gallery-lightbox__arrow { top: 50%; transform: translateY(-50%); }
.gallery-lightbox__arrow--prev { left: 18px; }
.gallery-lightbox__arrow--next { right: 18px; }

.gallery-lightbox__counter {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
}

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

.recent-vehicle-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
}

.recent-vehicle-card img {
    width: 100%;
    height: 100%;
    min-height: 145px;
    object-fit: cover;
}

.recent-vehicle-card__body {
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 15px;
}

.recent-vehicle-card strong {
    line-height: 1.25;
}

.recent-vehicle-card b {
    color: var(--blue-700);
    font-size: 1.25rem;
}

.recent-vehicle-card small {
    color: var(--muted);
}

.mobile-action-bar {
    display: none;
}

.is-reveal-pending {
    opacity: 0;
    transform: translateY(22px);
}

.is-revealed {
    opacity: 1;
    transform: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

@media (max-width: 1080px) {
    .hero--modern .hero__content {
        grid-template-columns: 1fr 1fr;
    }

    .quick-search--hero {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .quick-search--hero h2 {
        margin: 0;
    }

    .quick-search--hero .button {
        width: 100%;
    }

    .partner-hub {
        grid-template-columns: 1fr 1fr;
    }

    .partner-hub__heading {
        grid-column: 1 / -1;
    }

    .recently-viewed__grid {
        grid-template-columns: 1fr;
    }

    .vehicle-detail__grid {
        grid-template-areas:
            "gallery"
            "summary"
            "priced";
    }
}

@media (max-width: 720px) {
    body {
        padding-bottom: 72px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border-radius: 12px;
    }

    .nav-toggle__icon {
        display: grid;
        gap: 3px;
    }

    .nav-toggle__icon i {
        width: 17px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child { transform: translateY(5px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child { transform: translateY(-5px) rotate(-45deg); }

    .nav-menu {
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(100% + 8px);
        bottom: auto;
        height: auto;
        max-height: calc(100vh - 190px);
        display: flex;
        overflow-y: auto;
        padding: 18px;
        border-radius: 18px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }

    .nav-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-menu a {
        padding: 13px 14px;
        border-radius: 12px;
        font-size: 1rem;
    }

    body.nav-open {
        overflow: hidden;
    }

    .hero--modern .hero__content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 44px 0 24px;
    }

    .hero--modern h1 {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__benefits {
        border-radius: 18px;
    }

    .hero-vehicle,
    .hero-vehicle > img {
        min-height: 310px;
    }

    .hero-vehicle {
        border-radius: 20px;
    }

    .hero-vehicle__details {
        left: 18px;
        right: 18px;
        bottom: 16px;
    }

    .hero-vehicle__details strong { font-size: 1.05rem; }
    .hero-vehicle__details b { font-size: 1.35rem; }

    .quick-search--hero {
        padding: 16px;
        border-radius: 16px;
    }

    .quick-search--hero .form-grid {
        grid-template-columns: 1fr;
    }

    .partner-hub {
        grid-template-columns: 1fr;
        padding: 14px;
        border-radius: 20px;
    }

    .partner-hub__heading {
        grid-column: auto;
    }

    .partner-hub__card img {
        height: auto;
        max-height: 245px;
    }

    .vehicle-card__specs {
        grid-template-columns: 0.7fr 1.35fr 0.95fr;
        gap: 7px;
    }

    .vehicle-card__specs dd {
        font-size: var(--font-size-sm);
    }

    .gallery__arrow {
        width: 38px;
        height: 38px;
    }

    .gallery__tools {
        right: 10px;
        bottom: 10px;
    }

    .gallery__tools span {
        display: none;
    }

    .gallery-lightbox {
        padding: 12px;
    }

    .gallery-lightbox__arrow--prev { left: 8px; }
    .gallery-lightbox__arrow--next { right: 8px; }

    .recent-vehicle-card {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .vehicle-grid--priced {
        grid-template-columns: 1fr;
    }

    .mobile-action-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 45;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        min-height: 68px;
        padding: 7px max(8px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
        border-top: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 -12px 30px rgba(0, 18, 38, 0.12);
        backdrop-filter: blur(16px);
    }

    .mobile-action-bar a {
        display: grid;
        place-items: center;
        align-content: center;
        gap: 1px;
        border-right: 1px solid var(--line);
        color: var(--blue-900);
        font-size: 0.72rem;
        font-weight: var(--font-weight-bold);
        text-decoration: none;
    }

    .mobile-action-bar a:last-child {
        border-right: 0;
    }

    .mobile-action-bar span {
        color: var(--blue-700);
        font-size: 1.15rem;
        line-height: 1;
    }

    .cookie-banner {
        bottom: 82px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .is-reveal-pending,
    .is-revealed {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Shared subpage styling based on the modern homepage */
.page-hero {
    min-height: 390px;
    display: grid;
    align-items: center;
    padding: 86px 0 90px;
    color: var(--white);
    background-position: center right;
    border-bottom: 5px solid var(--blue-600);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(64, 144, 208, 0.35), transparent 30%),
        linear-gradient(100deg, rgba(0, 18, 53, 0.99) 0%, rgba(0, 32, 80, 0.96) 48%, rgba(0, 18, 53, 0.73) 100%);
    pointer-events: none;
}

.page-hero::after {
    height: 0;
    background: transparent;
}

.page-hero .container {
    max-width: 1200px;
}

.page-hero .eyebrow {
    color: #8fc8f3;
}

.page-hero h1 {
    max-width: 820px;
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.page-hero p {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.15rem;
}

.page-hero .button {
    margin-top: 24px;
}

.section--soft {
    background:
        radial-gradient(circle at 10% 0%, rgba(64, 144, 208, 0.14), transparent 28%),
        linear-gradient(180deg, #f7fbff, var(--blue-50));
}

.section-heading h2,
.split h2,
.form-page h2,
.detail-content h2,
.cards-two h2,
.contact-strip h2 {
    color: var(--blue-950);
    letter-spacing: -0.02em;
}

.section-heading > a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    text-decoration: none;
}

.filters,
.placeholder-form,
.contact-card,
.info-panel,
.map-placeholder,
.empty-state,
.cards-two article,
.contact-strip,
.review-card,
.team-card,
.area-grid article,
.faq-item,
.step-list li,
.check-card,
.image-card,
.icon-card {
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(0, 32, 80, 0.09);
}

.filters,
.placeholder-form,
.contact-card,
.info-panel,
.cards-two article,
.faq-item,
.check-card {
    border-top: 4px solid var(--blue-600);
}

.filters {
    overflow: hidden;
    padding: 24px;
    background: linear-gradient(160deg, var(--white), var(--blue-50));
}

.filters__heading {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

input,
select,
textarea {
    min-height: 48px;
    border-radius: 12px;
    border-color: #b9cde1;
    background: rgba(255, 255, 255, 0.96);
}

textarea {
    min-height: 140px;
}

.placeholder-form,
.contact-card,
.info-panel,
.cards-two article {
    background: linear-gradient(145deg, var(--white), #f8fbff);
}

.info-panel {
    position: relative;
    overflow: hidden;
}

.info-panel::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -90px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(64, 144, 208, 0.08);
    pointer-events: none;
}

.feature-list div {
    border-left: 0;
    border-top: 4px solid var(--blue-600);
    border-radius: 16px;
    padding: 22px;
    background: linear-gradient(145deg, var(--white), var(--blue-50));
    box-shadow: var(--shadow-soft);
}

.contact-strip {
    padding: 34px;
    background:
        radial-gradient(circle at 90% 20%, rgba(64, 144, 208, 0.18), transparent 28%),
        var(--white);
}

.cta-band {
    border-top: 5px solid var(--blue-600);
    border-bottom: 5px solid var(--blue-800);
}

.faq-item summary {
    padding: 21px 22px;
    color: var(--blue-950);
}

.faq-item[open] {
    border-color: var(--blue-400);
}

.step-list li {
    padding: 64px 20px 22px;
    border-top: 4px solid var(--blue-600);
    background: linear-gradient(145deg, var(--white), var(--blue-50));
}

.step-list li::before {
    top: 18px;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: linear-gradient(145deg, var(--blue-900), var(--blue-600));
    box-shadow: 0 9px 18px rgba(0, 32, 80, 0.2);
}

.area-grid article {
    border-top: 4px solid var(--blue-600);
    background: linear-gradient(145deg, var(--white), var(--blue-50));
}

.map-placeholder {
    overflow: hidden;
    border: 1px solid var(--line);
}

.prose h2 {
    color: var(--blue-950);
}

.prose h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--blue-600);
}

@media (max-width: 720px) {
    .page-hero {
        min-height: 360px;
        padding: 64px 0 68px;
        background-position: center;
    }

    .page-hero::before {
        background:
            linear-gradient(110deg, rgba(0, 18, 53, 0.99), rgba(0, 32, 80, 0.86));
    }

    .page-hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.35rem);
    }

    .page-hero p {
        color: rgba(255, 255, 255, 0.82);
        font-size: 1.02rem;
    }

    .filters,
    .placeholder-form,
    .contact-card,
    .info-panel,
    .cards-two article,
    .contact-strip {
        padding: 20px;
    }
}
