@font-face {
    font-family: 'Source Sans 3';
    src: url('Fonts/source-sans-3.woff2') format('woff2');
    font-style: normal;
    font-weight: 200 900;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('Fonts/barlow-condensed-700.woff2') format('woff2');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --cream: #f4f7fa;
    --paper: #ffffff;
    --ink: #0b2d49;
    --muted: #5f6d78;
    --blue: #1f5e8c;
    --blue-dark: #0b2d49;
    --blue-soft: #e7f0f6;
    --orange: #f2b332;
    --orange-dark: #1f5e8c;
    --peach: #d9e8f2;
    --mint: #25835b;
    --mint-soft: #e5f1ed;
    --yellow: #f2b332;
    --yellow-soft: #e7f0f6;
    --steel: #c7cdd1;
    --steel-dark: #79838a;
    --steel-soft: #e3e6e7;
    --line: rgba(32, 38, 44, 0.14);
    --shadow: 0 22px 60px rgba(23, 37, 47, 0.14);
    --radius-lg: 44px;
    --radius-md: 28px;
    --radius-sm: 18px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: 105px;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background-color: var(--cream);
    background-image: radial-gradient(rgba(32, 38, 44, 0.055) 0.55px, transparent 0.55px);
    background-size: 7px 7px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

body::before {
    display: none;
}

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

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

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

.site-grain {
    display: none;
}

.scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    height: 4px;
    z-index: 2000;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 88px;
    background: rgba(255, 246, 231, 0.94);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(16px);
    transition: min-height 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
    min-height: 76px;
    border-color: var(--line);
    box-shadow: 0 8px 30px rgba(36, 42, 55, 0.08);
}

.navbar .container {
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-brand a {
    display: block;
}

.nav-brand .logo {
    width: 225px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.55rem;
    list-style: none;
}

.nav-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-menu a:not(.nav-phone-btn)::after {
    position: absolute;
    right: 0;
    bottom: -0.35rem;
    left: 0;
    height: 3px;
    content: '';
    background: var(--orange);
    border-radius: 99px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.nav-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-phone-btn {
    gap: 0.55rem;
    padding: 0.78rem 1.15rem;
    color: #fff !important;
    background: var(--blue-dark);
    border-radius: 999px;
    box-shadow: 0 8px 0 rgba(21, 79, 125, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-phone-btn:hover {
    box-shadow: 0 4px 0 rgba(21, 79, 125, 0.12);
    transform: translateY(3px);
}

.hamburger {
    display: none;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    color: var(--ink);
    background: var(--yellow);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 3px;
    background: currentColor;
    border-radius: 99px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.hero {
    position: relative;
    min-height: 720px;
    padding: 70px 0 105px;
    overflow: hidden;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.hero-content {
    max-width: 660px;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
    color: var(--orange-dark);
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.section-title,
.section-header h2,
.mot-info h2 {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 850;
    letter-spacing: -0.055em;
}

.hero h1 {
    max-width: 700px;
    font-size: clamp(4.6rem, 7.1vw, 7.1rem);
    line-height: 0.84;
}

.hero h1 span,
.hero h1 strong {
    display: block;
}

.hero h1 span {
    color: var(--orange-dark);
}

.hero h1 strong {
    color: var(--blue);
    font-weight: inherit;
}

.hero-copy {
    max-width: 575px;
    margin-top: 1.8rem;
    color: var(--muted);
    font-size: 1.2rem;
    line-height: 1.5;
}

.hero-buttons,
.about-cta-inline,
.thank-you-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.88rem 1.35rem;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: #fff;
    background: var(--orange-dark);
    box-shadow: 0 8px 0 rgba(184, 84, 40, 0.18);
}

.btn-primary:hover {
    box-shadow: 0 4px 0 rgba(184, 84, 40, 0.18);
}

.btn-secondary {
    color: var(--ink);
    background: var(--paper);
    border-color: var(--ink);
}

.btn-outline {
    color: var(--blue-dark);
    background: transparent;
    border-color: var(--blue-dark);
}

.btn-small {
    min-height: 44px;
    padding: 0.72rem 1rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2.25rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.feature i {
    color: var(--mint);
    font-size: 1.2rem;
}

.hero-visual {
    position: relative;
    min-height: 540px;
}

.garage-photo-card {
    position: absolute;
    top: 25px;
    right: 5%;
    width: 82%;
    height: 465px;
    overflow: hidden;
    background: var(--blue-soft);
    border: 10px solid var(--paper);
    border-radius: 58px;
    box-shadow: var(--shadow);
    transform: rotate(3deg);
    animation: photoFloat 6s ease-in-out infinite;
}

.garage-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    filter: saturate(0.84) contrast(0.96);
}

.floating-note {
    position: absolute;
    z-index: 3;
    box-shadow: 0 16px 34px rgba(44, 53, 70, 0.17);
}

.floating-note-mot {
    top: 3%;
    left: -3%;
    display: grid;
    grid-template-columns: auto auto;
    gap: 0 0.5rem;
    align-items: baseline;
    padding: 1rem 1.25rem;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 22px 22px 22px 5px;
    transform: rotate(-5deg);
    animation: noteBob 4.5s ease-in-out infinite;
}

.floating-note-mot span {
    font-weight: 900;
}

.floating-note-mot strong {
    font-size: 2rem;
    line-height: 1;
}

.floating-note-mot small {
    grid-column: 1 / -1;
    color: rgba(23, 36, 57, 0.7);
    font-weight: 700;
}

.floating-note-quote {
    right: -2%;
    bottom: 7%;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.2rem;
    color: #fff;
    background: var(--blue-dark);
    border-radius: 22px 22px 5px 22px;
    font-weight: 750;
    line-height: 1.2;
    transform: rotate(3deg);
    animation: noteBob 5.2s -1.5s ease-in-out infinite;
}

.floating-note-quote i {
    font-size: 1.5rem;
}

.garage-wheel {
    position: absolute;
    right: 2%;
    bottom: -2%;
    z-index: 2;
    width: 135px;
    height: 135px;
    background: var(--ink);
    border: 16px solid #2d3543;
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(23, 36, 57, 0.25);
    animation: wheelDrift 9s ease-in-out infinite;
}

.garage-wheel span {
    position: absolute;
    inset: 25px;
    background: var(--paper);
    border: 9px solid var(--blue);
    border-radius: 50%;
}

.garage-wheel i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    z-index: 2;
    background: var(--ink);
    border-radius: 50%;
}

.garage-wheel i:nth-of-type(1) { transform: translate(-50%, -50%) translateY(-20px); }
.garage-wheel i:nth-of-type(2) { transform: translate(-50%, -50%) translateX(20px); }
.garage-wheel i:nth-of-type(3) { transform: translate(-50%, -50%) translateY(20px); }
.garage-wheel i:nth-of-type(4) { transform: translate(-50%, -50%) translateX(-20px); }

.tool-bubble {
    position: absolute;
    bottom: 3%;
    left: 3%;
    z-index: 3;
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    color: var(--ink);
    background: var(--peach);
    border-radius: 42% 58% 58% 42% / 55% 44% 56% 45%;
    font-size: 2rem;
    animation: morph 6s ease-in-out infinite;
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orbit-one {
    top: -280px;
    right: -190px;
    width: 560px;
    height: 560px;
    background: var(--blue);
}

.hero-orbit-two {
    bottom: 40px;
    left: -230px;
    width: 360px;
    height: 360px;
    border: 78px solid var(--yellow-soft);
}

.proof-strip {
    position: relative;
    z-index: 4;
    margin-top: -55px;
}

.proof-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.proof-strip-grid > div {
    padding: 1.15rem 1.35rem;
    border-right: 1px solid var(--line);
}

.proof-strip-grid > div:last-child {
    border: 0;
}

.proof-strip strong,
.proof-strip-grid > div > span {
    display: block;
}

.proof-strip strong {
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 850;
}

.proof-strip strong [data-count] {
    display: inline;
    font: inherit;
}

.proof-strip-grid > div > span {
    color: var(--muted);
    font-size: 0.88rem;
}

.section-jump {
    position: sticky;
    top: 92px;
    z-index: 900;
    display: flex;
    width: max-content;
    max-width: calc(100% - 40px);
    margin: 34px auto 0;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(42, 50, 66, 0.12);
    backdrop-filter: blur(16px);
}

.section-jump a {
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 750;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.section-jump a:hover,
.section-jump a:focus-visible {
    color: var(--ink);
    background: var(--yellow-soft);
}

.service-marquee {
    margin-top: 35px;
    overflow: hidden;
    color: var(--ink);
    background: var(--yellow);
    border-block: 1px solid rgba(23, 36, 57, 0.09);
}

.marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    animation: marqueeMove 28s linear infinite;
}

.marquee-track i {
    color: var(--orange);
    font-size: 0.62rem;
    font-style: normal;
}

section {
    position: relative;
}

.services,
.mot-section,
.servicing-section,
.payments-assist-section,
.about,
.booking,
.contact {
    padding: 120px 0;
}

.section-heading,
.payments-assist-header {
    max-width: 850px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-heading .section-eyebrow,
.payments-assist-header .section-eyebrow {
    justify-content: center;
}

.section-title,
.section-header h2,
.mot-info h2 {
    color: var(--ink);
    font-size: clamp(3.7rem, 6vw, 6.2rem);
    line-height: 0.92;
}

.section-title span,
.section-header h2 span {
    color: var(--orange-dark);
}

.section-subtitle,
.booking-intro {
    max-width: 720px;
    margin: 1.35rem auto 0;
    color: var(--muted);
    font-size: 1.14rem;
}

.services {
    background: var(--cream);
}

.services-overlay {
    display: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}

.service-card {
    --card-bg: var(--paper);
    position: relative;
    min-height: 315px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    box-shadow: 0 14px 34px rgba(43, 51, 66, 0.08);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.service-card:nth-child(3n + 1) { --card-bg: var(--blue-soft); }
.service-card:nth-child(3n + 2) { --card-bg: var(--mint-soft); }
.service-card:nth-child(3n) { --card-bg: var(--steel-soft); }

.service-card::after {
    position: absolute;
    right: -42px;
    bottom: -54px;
    width: 150px;
    height: 150px;
    content: '';
    border: 25px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    transition: transform 0.45s ease;
}

.service-card:hover {
    z-index: 2;
    box-shadow: 0 24px 50px rgba(43, 51, 66, 0.14);
    transform: translateY(-9px) rotate(-0.6deg);
}

.service-card:hover::after {
    transform: rotate(35deg) scale(1.08);
}

.service-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 76px;
    height: 76px;
    margin-bottom: 1.6rem;
    place-items: center;
    color: var(--blue-dark);
    background: rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    font-size: 2rem;
    transform: rotate(-3deg);
}

.service-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
    opacity: 0.82;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 0.65rem;
    font-size: 1.65rem;
    line-height: 1.05;
}

.service-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 1.4rem;
    color: var(--muted);
}

.service-card .price {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-top: auto;
    padding: 0.55rem 0.85rem;
    color: #fff;
    background: var(--ink);
    border-radius: 999px;
    font-weight: 800;
}

.services-grid:not(.show-all) .service-card:nth-child(n + 7) {
    display: none;
}

.services-toggle {
    margin: 2.2rem auto 0;
}

.services .services-toggle {
    display: flex;
}

.section-cta {
    margin-top: 2.8rem;
    text-align: center;
}

.section-cta p {
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--blue-dark);
    font-weight: 800;
}

.mot-section {
    overflow: hidden;
    color: #fff;
    background: var(--blue);
    border-radius: 72px 72px 0 0;
}

.mot-section::before {
    position: absolute;
    top: -270px;
    right: -210px;
    width: 560px;
    height: 560px;
    content: '';
    border: 95px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.mot-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: clamp(3rem, 7vw, 6rem);
    align-items: center;
}

.mot-info .section-eyebrow {
    color: var(--yellow-soft);
}

.mot-info h2 {
    color: #fff;
}

.mot-info > p:not(.section-eyebrow) {
    max-width: 590px;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
}

.mot-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 2rem 0;
    list-style: none;
}

.mot-checklist li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-weight: 650;
}

.mot-checklist i {
    color: var(--yellow);
}

.mot-price {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1rem;
    align-items: end;
    max-width: 500px;
    padding: 1.3rem 1.5rem;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 30px;
    transform: rotate(-1.4deg);
}

.mot-price h3 {
    grid-column: 1 / -1;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mot-price .price-tag {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.06em;
}

.mot-price .price-tag [data-count] {
    font: inherit;
}

.price-tag small {
    font-size: 0.35em;
}

.mot-price p {
    color: rgba(23, 36, 57, 0.66);
    font-size: 0.84rem;
}

.mot-price .free-retest {
    color: var(--ink);
    font-weight: 850;
}

.mot-booking {
    padding: clamp(2rem, 4vw, 3.25rem);
    color: var(--ink);
    background: var(--paper);
    border-radius: 42px;
    box-shadow: 0 30px 70px rgba(30, 54, 92, 0.25);
}

.mot-booking > h3 {
    font-size: 2.25rem;
    line-height: 1;
}

.mot-booking > p {
    margin: 0.8rem 0 1.3rem;
    color: var(--muted);
}

.mot-reminder {
    margin-top: 1.6rem;
    padding: 1.4rem;
    background: var(--blue-soft);
    border-radius: 28px;
}

.mot-reminder h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
}

.mot-reminder h4 i {
    color: var(--orange);
}

.mot-reminder p {
    margin: 0.3rem 0 0.9rem;
    color: var(--muted);
}

.reminder-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.reminder-form input {
    min-width: 0;
    width: 100%;
    padding: 0.8rem 0.9rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.reminder-form .btn {
    width: 100%;
    margin-top: 0.2rem;
}

.mot-check-link {
    margin-top: 0.8rem;
    font-size: 0.88rem;
    font-weight: 700;
}

.servicing-section {
    background: var(--yellow-soft);
    text-align: center;
}

.servicing-section::before {
    position: absolute;
    left: -110px;
    bottom: -110px;
    width: 270px;
    height: 270px;
    content: '';
    border: 48px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.servicing-section .section-eyebrow {
    justify-content: center;
}

.servicing-grid {
    max-width: 920px;
    margin: 3rem auto;
    overflow: visible;
    text-align: left;
}

.servicing-header,
.servicing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.servicing-header {
    overflow: hidden;
    color: #fff;
    background: var(--blue-dark);
    border-radius: 28px 28px 0 0;
}

.header-cell,
.engine-size,
.price-cell {
    padding: 1.3rem 1.4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.header-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-weight: 800;
    text-align: center;
}

.servicing-row {
    position: relative;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.servicing-row:hover {
    z-index: 2;
    box-shadow: 0 14px 30px rgba(54, 58, 67, 0.12);
    transform: scale(1.012);
}

.servicing-row:last-child {
    border: 0;
    border-radius: 0 0 28px 28px;
}

.engine-size {
    font-weight: 800;
}

.price-cell {
    color: var(--blue-dark);
    font-size: 1.2rem;
    font-weight: 850;
    text-align: center;
}

.price-cell.special {
    grid-column: span 2;
    color: var(--orange-dark);
}

.info-tooltip {
    position: relative;
}

.info-tooltip summary {
    color: var(--yellow);
    cursor: pointer;
    list-style: none;
}

.tooltip-content {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    width: 320px;
    z-index: 20;
    padding: 1.2rem;
    color: var(--ink);
    background: var(--paper);
    border-radius: 18px;
    box-shadow: var(--shadow);
    text-align: left;
    transform: translateX(-50%);
}

.tooltip-content ul {
    margin: 0.6rem 0 0 1.15rem;
}

.additional-services {
    max-width: 920px;
    margin: 0 auto;
}

.additional-services h3,
.how-it-works h3 {
    margin-bottom: 1.6rem;
    font-size: 1.65rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.additional-item {
    display: flex;
    min-height: 105px;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 22px;
    text-align: left;
}

.service-name {
    font-weight: 750;
}

.service-price {
    color: var(--orange-dark);
    font-weight: 850;
}

.servicing-note {
    max-width: 920px;
    margin: 2rem auto 0;
    padding: 1.2rem 1.4rem;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 20px;
    color: var(--muted);
    font-size: 0.92rem;
    text-align: left;
}

.payments-assist-section {
    overflow: hidden;
    background: var(--mint-soft);
}

.payments-assist-logo {
    width: min(320px, 80%);
    margin: 0 auto 1.8rem;
}

.how-it-works {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.steps-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 3rem 0 2rem;
}

.steps-container::before {
    position: absolute;
    top: 31px;
    right: 16%;
    left: 16%;
    height: 4px;
    content: '';
    background: repeating-linear-gradient(90deg, var(--orange) 0 10px, transparent 10px 18px);
}

.step-card {
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.4rem 1.6rem 1.8rem;
    overflow: hidden;
    background: var(--paper);
    border-radius: 32px;
    box-shadow: 0 12px 30px rgba(45, 60, 63, 0.09);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    box-shadow: 0 22px 40px rgba(45, 60, 63, 0.14);
    transform: translateY(-8px) rotate(-0.6deg);
}

.step-card .step-number {
    position: absolute;
    top: 0.85rem;
    left: 50%;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #fff;
    background: var(--orange-dark);
    border: 5px solid var(--mint-soft);
    border-radius: 50%;
    font-size: 1.15rem;
    font-weight: 900;
    transform: translateX(-50%);
}

.step-card .step-icon {
    display: grid;
    width: 78px;
    height: 78px;
    margin: 1.1rem 0 1.2rem;
    place-items: center;
    color: var(--blue-dark);
    background: var(--blue-soft);
    border-radius: 26px;
    font-size: 2rem;
    transform: rotate(3deg);
}

.step-content p {
    color: var(--muted);
}

.step-content strong {
    color: var(--ink);
}

.payments-assist-summary {
    padding: 1.6rem 2rem;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 28px;
}

.payments-assist-summary strong {
    color: var(--orange-dark);
}

.finance-note {
    display: block;
    margin-top: 0.5rem;
    color: rgba(23, 36, 57, 0.65);
    font-size: 0.88rem;
}

.about {
    background: var(--cream);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(3rem, 7vw, 6rem);
    align-items: center;
}

.garage-image {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: var(--blue-soft);
    border-radius: 52px;
    box-shadow: var(--shadow);
    transform: rotate(-2deg);
}

.garage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.garage-image:hover img {
    transform: scale(1.04);
}

.garage-image-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.7rem 1rem;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 999px;
    font-weight: 850;
}

.contact-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.badge {
    display: flex;
    min-height: 95px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.8rem;
    background: var(--paper);
    border-radius: 22px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 750;
}

.badge i {
    color: var(--blue-dark);
    font-size: 1.3rem;
}

.section-header .section-eyebrow {
    margin-bottom: 1rem;
}

.about-description p + p {
    margin-top: 1rem;
}

.welcome-text {
    font-size: 1.12rem;
}

.trust-message {
    padding: 1rem 1.2rem;
    background: var(--yellow-soft);
    border-radius: 18px;
    font-weight: 700;
}

.service-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1.7rem;
}

.highlight-item {
    display: flex;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.52);
    border-radius: 20px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.highlight-item:hover {
    background: var(--paper);
    transform: translateY(-4px);
}

.highlight-item i {
    color: var(--orange);
    font-size: 1.3rem;
}

.highlight-item h4 {
    line-height: 1.1;
}

.highlight-item p {
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-top: 4rem;
}

.indicator {
    padding: 1.4rem 1rem;
    background: var(--blue-soft);
    border-radius: 24px;
    text-align: center;
}

.indicator:nth-child(even) {
    background: var(--mint-soft);
}

.indicator-number {
    color: var(--blue-dark);
    font-size: 2rem;
    font-weight: 900;
}

.indicator-label {
    color: var(--muted);
    font-weight: 700;
}

.booking {
    overflow: hidden;
    color: #fff;
    background: var(--blue-dark);
    border-radius: 72px 72px 0 0;
    text-align: center;
}

.booking::before {
    position: absolute;
    top: -330px;
    left: -240px;
    width: 650px;
    height: 650px;
    content: '';
    border: 110px solid rgba(98, 135, 223, 0.38);
    border-radius: 50%;
}

.booking-overlay {
    display: none;
}

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

.booking .section-eyebrow {
    justify-content: center;
    color: var(--yellow);
}

.booking .section-title {
    color: #fff;
}

.booking .section-title span {
    color: var(--yellow);
}

.booking-intro {
    color: rgba(255, 255, 255, 0.76);
}

.booking-form {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    color: var(--ink);
    background: var(--paper);
    border-radius: 42px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 800;
}

.optional {
    color: var(--muted);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 55px;
    padding: 0.85rem 1rem;
    color: var(--ink);
    background: #fff;
    border: 1.5px solid rgba(23, 36, 57, 0.18);
    border-radius: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
    min-height: 125px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(98, 135, 223, 0.15);
    outline: 0;
}

.form-group small {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.booking-notice {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    color: var(--blue-dark);
    background: var(--blue-soft);
    border-radius: 16px;
}

.privacy-note {
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.booking-form > .btn {
    width: 100%;
}

.contact {
    background: var(--cream);
}

.contact > .container > .section-eyebrow {
    justify-content: center;
}

.contact > .container > .section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 1.4rem;
}

.contact-info,
.map-container {
    overflow: hidden;
    background: var(--paper);
    border-radius: 36px;
    box-shadow: 0 14px 34px rgba(43, 51, 66, 0.08);
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0.9rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.contact-item > i {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 16px;
}

.contact-item h3 {
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
}

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

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.35rem 0;
    padding: 0.5rem 0.75rem;
    background: var(--mint-soft);
    border-radius: 999px;
    font-size: 0.87rem;
    font-weight: 750;
}

.status-dot {
    width: 9px;
    height: 9px;
    background: #b7bdc5;
    border-radius: 50%;
}

.status-dot.open { background: #31a46e; }
.status-dot.closed { background: #df7070; }

.bank-holiday-note {
    margin-top: 0.5rem;
    font-size: 0.82rem;
}

.service-area {
    margin-top: 1.3rem;
    padding: 1rem;
    color: var(--muted);
    background: var(--blue-soft);
    border-radius: 16px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 590px;
}

.footer {
    padding: 70px 0 22px;
    color: rgba(255, 255, 255, 0.78);
    background: var(--ink);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
}

.footer-logo-img {
    width: 220px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--yellow);
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li + li {
    margin-top: 0.65rem;
}

.footer a {
    color: inherit;
}

.social-links {
    margin-top: 1.1rem;
}

.social-links a {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 50%;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.cert-logo {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--ink);
    background: var(--orange);
    border-radius: 50%;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.88rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.separator {
    opacity: 0.35;
}

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

.legal-hero,
.thank-you-hero,
.mot-reminder-thank-you-hero {
    padding: 80px 0;
    background: var(--blue-soft);
    text-align: center;
}

.legal-hero h1,
.thank-you-content h1,
.mot-reminder-thank-you-content h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.last-updated,
.thank-you-subtitle {
    margin-top: 1rem;
    color: var(--muted);
}

.legal-content-section,
.thank-you-content,
.mot-reminder-thank-you-content {
    padding: 80px 0;
}

.legal-content,
.thank-you-content,
.mot-reminder-thank-you-content {
    width: min(920px, calc(100% - 40px));
    margin-inline: auto;
}

.legal-text {
    padding: clamp(1.4rem, 4vw, 3rem);
    background: var(--paper);
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.legal-text h2 {
    margin: 2rem 0 0.7rem;
    color: var(--blue-dark);
    font-size: 1.75rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    margin: 1.3rem 0 0.5rem;
}

.legal-text p + p,
.legal-text ul + p,
.legal-text ol + p {
    margin-top: 0.9rem;
}

.legal-text ul,
.legal-text ol {
    margin: 0.6rem 0 1rem 1.4rem;
}

.success-icon {
    display: grid;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.3rem;
    place-items: center;
    color: #fff;
    background: var(--mint);
    border-radius: 50%;
    font-size: 3rem;
}

.thank-you-message,
.contact-info-card,
.next-steps,
.reminder-benefits,
.additional-services-thank-you {
    margin-top: 2rem;
    padding: clamp(1.3rem, 4vw, 2.2rem);
    background: var(--paper);
    border-radius: 28px;
    box-shadow: 0 14px 34px rgba(43, 51, 66, 0.08);
}

.steps-grid,
.benefits-grid,
.services-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.2rem;
}

.step,
.benefit,
.service-preview-card {
    padding: 1.3rem;
    background: var(--blue-soft);
    border-radius: 22px;
    text-align: center;
}

.step .step-number,
.benefit-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0 auto 0.8rem;
    place-items: center;
    color: #fff;
    background: var(--orange-dark);
    border-radius: 50%;
    font-weight: 900;
}

.benefit-icon {
    background: var(--mint);
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-details a {
    font-weight: 800;
}

.reveal-ready {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready.revealed {
    opacity: 1;
    transform: none;
}

@keyframes photoFloat {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(1.5deg) translateY(-10px); }
}

@keyframes noteBob {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -9px; }
}

@keyframes wheelDrift {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(-16px) rotate(-12deg); }
}

@keyframes morph {
    0%, 100% { border-radius: 42% 58% 58% 42% / 55% 44% 56% 45%; transform: rotate(-4deg); }
    50% { border-radius: 58% 42% 45% 55% / 42% 58% 42% 58%; transform: rotate(4deg); }
}

@keyframes marqueeMove {
    to { transform: translateX(-50%); }
}

@media (max-width: 1080px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.86rem;
    }

    .nav-brand .logo {
        width: 190px;
    }

    .hero h1 {
        font-size: clamp(4.25rem, 8vw, 6.1rem);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-section:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 84px;
    }

    body {
        padding-bottom: 68px;
    }

    .navbar,
    .navbar.scrolled {
        min-height: 76px;
    }

    .nav-brand .logo {
        width: 175px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - 76px);
        overflow-y: auto;
        flex-direction: column;
        gap: 0.35rem;
        padding: 1.2rem 20px 1.5rem;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 35px rgba(42, 50, 66, 0.12);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li,
    .nav-menu a {
        width: 100%;
    }

    .nav-menu a {
        justify-content: center;
        padding: 0.55rem;
        font-size: 1rem;
    }

    .nav-phone-btn {
        width: auto !important;
        margin-top: 0.5rem;
    }

    .section-jump {
        display: none;
    }

    .hero {
        padding-top: 50px;
    }

    .hero-layout,
    .mot-content,
    .about-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-visual {
        min-height: 520px;
        width: min(620px, 100%);
        margin: 0 auto;
    }

    .proof-strip {
        margin-top: -35px;
    }

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

    .proof-strip-grid > div:nth-child(2) {
        border-right: 0;
    }

    .proof-strip-grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .mot-section,
    .booking {
        border-radius: 50px 50px 0 0;
    }

    .about-image-section {
        width: min(650px, 100%);
        margin: 0 auto;
    }

    .contact-grid {
        gap: 1rem;
    }

    .map-container iframe {
        min-height: 460px;
    }

    .mobile-action-bar {
        position: fixed;
        inset: auto 0 0;
        z-index: 1500;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        height: 68px;
        color: #fff;
        background: var(--blue-dark);
        border-top: 3px solid var(--yellow);
    }

    .mobile-action-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0.15rem;
        color: #fff;
        border-right: 1px solid rgba(255, 255, 255, 0.14);
        font-size: 0.76rem;
        font-weight: 800;
        text-decoration: none;
    }

    .mobile-action-bar a:nth-child(2) {
        background: var(--orange-dark);
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    body {
        font-size: 16px;
    }

    .hero {
        min-height: 0;
        padding: 42px 0 88px;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 17vw, 4.8rem);
        line-height: 0.86;
    }

    .hero-copy {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .feature:last-child {
        grid-column: 1 / -1;
    }

    .hero-visual {
        min-height: 420px;
        margin-top: 1rem;
    }

    .garage-photo-card {
        top: 30px;
        right: 1%;
        width: 92%;
        height: 340px;
        border-width: 7px;
        border-radius: 42px;
    }

    .floating-note-mot {
        left: -1%;
        padding: 0.8rem 1rem;
    }

    .floating-note-mot strong {
        font-size: 1.65rem;
    }

    .floating-note-quote {
        right: 0;
        bottom: 1%;
        max-width: 205px;
        font-size: 0.86rem;
    }

    .garage-wheel {
        right: -2%;
        width: 105px;
        height: 105px;
        border-width: 12px;
    }

    .garage-wheel span {
        inset: 19px;
        border-width: 7px;
    }

    .garage-wheel i:nth-of-type(1) { transform: translate(-50%, -50%) translateY(-15px); }
    .garage-wheel i:nth-of-type(2) { transform: translate(-50%, -50%) translateX(15px); }
    .garage-wheel i:nth-of-type(3) { transform: translate(-50%, -50%) translateY(15px); }
    .garage-wheel i:nth-of-type(4) { transform: translate(-50%, -50%) translateX(-15px); }

    .tool-bubble {
        width: 62px;
        height: 62px;
        font-size: 1.55rem;
    }

    .hero-orbit-one {
        display: none;
    }

    .proof-strip {
        margin-top: -22px;
    }

    .proof-strip-grid > div {
        padding: 0.9rem 0.8rem;
        text-align: center;
    }

    .proof-strip strong {
        font-size: 1.02rem;
    }

    .proof-strip-grid > div > span {
        font-size: 0.75rem;
    }

    .service-marquee {
        margin-top: 22px;
    }

    .marquee-track {
        gap: 0.65rem;
        font-size: 1rem;
        animation-duration: 20s;
    }

    .services,
    .mot-section,
    .servicing-section,
    .payments-assist-section,
    .about,
    .booking,
    .contact {
        padding: 78px 0;
    }

    .section-title,
    .section-header h2,
    .mot-info h2 {
        font-size: clamp(3.2rem, 14vw, 4.7rem);
    }

    .section-heading,
    .payments-assist-header {
        margin-bottom: 2.3rem;
    }

    .services-grid,
    .steps-container,
    .additional-grid,
    .service-highlights,
    .trust-indicators,
    .steps-grid,
    .benefits-grid,
    .services-preview {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 0;
        padding: 1.5rem;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.1rem;
        border-radius: 20px;
    }

    .mot-checklist {
        grid-template-columns: 1fr;
    }

    .mot-price {
        grid-template-columns: 1fr;
    }

    .mot-price .price-tag {
        font-size: 5rem;
    }

    .mot-booking {
        padding: 1.35rem;
        border-radius: 32px;
    }

    .reminder-form .form-row,
    .form-row {
        grid-template-columns: 1fr;
    }

    .servicing-header {
        display: none;
    }

    .servicing-grid {
        margin: 2rem auto;
    }

    .servicing-row {
        display: block;
        margin-bottom: 0.8rem;
        padding: 1rem;
        border: 0;
        border-radius: 22px !important;
    }

    .engine-size {
        padding: 0.8rem;
        color: #fff;
        background: var(--blue-dark);
        border: 0;
        border-radius: 14px;
        text-align: center;
    }

    .price-cell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.9rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        text-align: right;
    }

    .price-cell::before {
        content: attr(data-label);
        color: var(--ink);
        font-size: 1rem;
        font-weight: 750;
    }

    .price-cell.special {
        display: block;
        padding: 1rem 0 0.2rem;
        border: 0;
        text-align: center;
    }

    .price-cell.special::before {
        display: none;
    }

    .additional-item {
        min-height: 80px;
    }

    .steps-container::before {
        display: none;
    }

    .step-card {
        min-height: 0;
        align-items: flex-start;
        padding: 1.35rem 1.35rem 1.35rem 5.8rem;
        text-align: left;
    }

    .step-card .step-number {
        top: 1rem;
        left: 1rem;
        transform: none;
    }

    .step-card .step-icon {
        width: 58px;
        height: 58px;
        margin: 0 0 0.8rem;
        font-size: 1.55rem;
    }

    .garage-image {
        height: 340px;
        border-radius: 38px;
    }

    .contact-badges {
        grid-template-columns: 1fr;
    }

    .badge {
        min-height: 72px;
        flex-direction: row;
    }

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

    .booking-form {
        margin-top: 2rem;
        padding: 1.15rem;
        border-radius: 30px;
    }

    .contact-info {
        padding: 1.3rem;
    }

    .map-container iframe {
        min-height: 390px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section:last-child {
        grid-column: auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

    .tooltip-content {
        position: fixed;
        top: 50%;
        left: 50%;
        width: calc(100vw - 40px);
        max-height: 78vh;
        overflow: auto;
        transform: translate(-50%, -50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .marquee-track {
        transform: none !important;
    }
}

/* Payment Assist — unexpected repair story */
.payments-assist-section {
    position: relative;
    z-index: 2;
    margin-top: -72px;
    padding: 130px 0 105px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(31, 94, 140, 0.07) 0 1px, transparent 1px 80px),
        linear-gradient(180deg, #eaf0f4 0%, #f7f9fa 72%, #fff 100%);
    background-size: 80px 80px, auto;
    border-radius: 72px 72px 0 0;
}

.payment-rescue-panel {
    position: relative;
    display: grid;
    min-height: 650px;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    overflow: hidden;
    color: #fff;
    background: var(--blue-dark);
    border: 0;
    border-radius: 18px 72px 18px 72px;
    box-shadow: 0 32px 70px rgba(7, 35, 57, 0.22);
}

.payment-rescue-panel::after {
    position: absolute;
    right: 34px;
    bottom: 26px;
    width: 170px;
    height: 48px;
    content: '';
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 7px, transparent 7px 16px);
    pointer-events: none;
}

.payment-rescue-media {
    position: relative;
    z-index: 1;
    min-width: 0;
    min-height: 650px;
    overflow: hidden;
    background: #163e5d;
    border-radius: 17px 116px 116px 71px;
}

.payment-rescue-media::after {
    position: absolute;
    inset: 0;
    content: '';
    background:
        linear-gradient(180deg, rgba(7, 35, 57, 0.05) 42%, rgba(7, 35, 57, 0.9) 100%),
        linear-gradient(90deg, transparent 58%, rgba(7, 35, 57, 0.34));
    pointer-events: none;
}

.payment-rescue-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% center;
    filter: saturate(0.86) contrast(1.04);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.payment-rescue-panel:hover .payment-rescue-media img {
    filter: saturate(0.98) contrast(1.04);
    transform: scale(1.025);
}

.payment-photo-caption {
    position: absolute;
    right: 2.2rem;
    bottom: 7rem;
    left: 2.2rem;
    z-index: 2;
    padding-left: 1rem;
    border-left: 5px solid var(--orange);
}

.payment-photo-caption span,
.payment-photo-caption strong {
    display: block;
}

.payment-photo-caption span {
    color: var(--orange);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.payment-photo-caption strong {
    margin-top: 0.15rem;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    line-height: 1;
}

.payment-rescue-copy {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    justify-content: center;
    flex-direction: column;
    padding: clamp(3.5rem, 6vw, 5.8rem) clamp(2.5rem, 5vw, 5rem);
}

.payment-assist-brand {
    width: fit-content;
    margin-bottom: 1.5rem;
    padding: 0.72rem 1rem;
    background: #fff;
    border-radius: 8px 18px 8px 8px;
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.18);
}

.payment-assist-brand .payments-assist-logo {
    width: clamp(190px, 21vw, 250px);
    height: auto;
    max-width: 100%;
    margin: 0;
    object-fit: contain;
}

.payment-rescue-copy .section-eyebrow {
    justify-content: flex-start;
    margin-bottom: 0.9rem;
    color: var(--orange);
}

.payment-rescue-copy h2 {
    max-width: 660px;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3.45rem, 5.4vw, 5.75rem);
    line-height: 0.9;
    letter-spacing: -0.035em;
}

.payment-rescue-copy h2 span {
    color: var(--orange);
}

.payment-assist-lede {
    max-width: 620px;
    margin-top: 1.35rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.55;
}

.payment-benefits {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.7rem;
}

.payment-benefits > div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
}

.payment-benefits i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--blue-dark);
    background: var(--orange);
    border-radius: 8px 14px 8px 8px;
}

.payment-benefits span,
.payment-benefits strong,
.payment-benefits small {
    display: block;
}

.payment-benefits strong {
    color: #fff;
    font-size: 1rem;
}

.payment-benefits small {
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.84rem;
}

.payment-assist-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    margin-top: 2rem;
}

.payment-assist-actions .btn {
    min-height: 52px;
}

.payment-assist-actions > span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 750;
}

.payment-assist-actions > span i {
    margin-right: 0.35rem;
    color: var(--orange);
}

.payment-plan-board {
    position: relative;
    z-index: 4;
    display: grid;
    width: calc(100% - 80px);
    grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1.7fr) 150px;
    gap: 2rem;
    align-items: center;
    margin: -72px auto 0;
    padding: 2.1rem 2.2rem;
    color: var(--blue-dark);
    background: #fff;
    border: 1px solid rgba(11, 45, 73, 0.11);
    border-radius: 18px 18px 42px 18px;
    box-shadow: 0 24px 50px rgba(11, 45, 73, 0.16);
}

.payment-plan-intro .section-eyebrow {
    margin-bottom: 0.45rem;
    color: var(--orange-dark);
}

.payment-plan-intro h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 0.96;
}

.payment-plan-intro h3 span {
    color: var(--orange-dark);
}

.payment-plan-intro > p:last-child {
    margin-top: 0.75rem;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.payment-schedule {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
    list-style: none;
}

.payment-schedule::before {
    position: absolute;
    top: 16px;
    right: 10%;
    left: 10%;
    height: 3px;
    content: '';
    background: repeating-linear-gradient(90deg, var(--orange) 0 9px, transparent 9px 15px);
}

.payment-schedule li {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding: 2.4rem 0.65rem 0.75rem;
    text-align: center;
}

.payment-schedule li::before {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 20px;
    height: 20px;
    content: '';
    background: #fff;
    border: 6px solid var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fff;
    transform: translateX(-50%);
}

.payment-stage,
.payment-schedule strong,
.payment-schedule small {
    display: block;
}

.payment-stage {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.payment-schedule strong {
    margin-top: 0.1rem;
    color: var(--blue-dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.payment-schedule small {
    margin-top: 0.3rem;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.2;
}

.payment-plan-total {
    display: grid;
    min-height: 135px;
    place-items: center;
    align-content: center;
    padding: 1rem;
    color: var(--blue-dark);
    background: var(--yellow-soft);
    border: 1px solid rgba(31, 94, 140, 0.16);
    border-radius: 12px 26px 12px 12px;
    text-align: center;
}

.payment-plan-total > span {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.payment-plan-total strong {
    color: var(--orange-dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.9rem;
    line-height: 1;
}

.payment-plan-total small {
    color: var(--muted);
    font-size: 0.74rem;
}

.payment-finance-note {
    width: calc(100% - 120px);
    margin: 1.15rem auto 0;
    color: var(--muted);
    font-size: 0.78rem;
    text-align: center;
}

.payment-finance-note i {
    margin-right: 0.25rem;
    color: var(--blue);
}

@media (max-width: 980px) {
    .payment-rescue-panel {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .payment-rescue-media {
        min-height: 440px;
        border-radius: 17px 71px 100px 17px;
    }

    .payment-rescue-media img {
        object-position: 50% 44%;
    }

    .payment-photo-caption {
        bottom: 2.3rem;
    }

    .payment-rescue-copy {
        padding: 3.6rem clamp(2rem, 7vw, 4.2rem) 7rem;
    }

    .payment-plan-board {
        width: calc(100% - 44px);
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.8rem;
    }

    .payment-plan-intro {
        max-width: 620px;
    }

    .payment-plan-total {
        min-height: 0;
        grid-template-columns: auto auto auto;
        justify-content: center;
        gap: 0.8rem;
    }
}

@media (max-width: 680px) {
    .payments-assist-section {
        margin-top: -42px;
        padding: 92px 0 72px;
        border-radius: 42px 42px 0 0;
    }

    .payments-assist-section .container {
        width: min(100% - 28px, 1180px);
    }

    .payment-rescue-panel {
        border-radius: 12px 38px 12px 38px;
    }

    .payment-rescue-media {
        min-height: 320px;
        border-radius: 11px 37px 70px 11px;
    }

    .payment-rescue-media img {
        object-position: 52% center;
    }

    .payment-photo-caption {
        right: 1.25rem;
        bottom: 1.35rem;
        left: 1.25rem;
    }

    .payment-rescue-copy {
        padding: 2.25rem 1.25rem 5.2rem;
    }

    .payment-assist-brand {
        margin-bottom: 1.2rem;
    }

    .payment-rescue-copy h2 {
        font-size: clamp(3rem, 14vw, 4.15rem);
    }

    .payment-assist-lede {
        font-size: 1rem;
    }

    .payment-assist-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .payment-assist-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .payment-plan-board {
        width: calc(100% - 18px);
        margin-top: -38px;
        padding: 1.35rem;
        border-radius: 14px 14px 30px 14px;
    }

    .payment-schedule {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .payment-schedule::before {
        display: none;
    }

    .payment-schedule li {
        padding: 0.9rem;
        background: var(--steel-soft);
        border-radius: 10px;
    }

    .payment-schedule li::before {
        top: 0.9rem;
        left: 0.9rem;
        width: 10px;
        height: 10px;
        border-width: 3px;
        box-shadow: none;
        transform: none;
    }

    .payment-stage {
        padding-left: 0.85rem;
    }

    .payment-plan-total {
        grid-template-columns: 1fr;
        gap: 0.1rem;
    }

    .payment-finance-note {
        width: calc(100% - 18px);
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .payment-rescue-media img {
        transition: none;
    }

    .payment-rescue-panel:hover .payment-rescue-media img {
        transform: none;
    }
}

/* BookMyGarage-inspired automotive booking direction */
:root {
    --cream: #f4f7fa;
    --paper: #ffffff;
    --ink: #0b2d49;
    --muted: #5f6d78;
    --blue: #3675a6;
    --blue-dark: #0b2d49;
    --blue-soft: #e7f0f6;
    --orange: #f2b332;
    --orange-dark: #1f5e8c;
    --mint: #25835b;
    --mint-soft: #e5f1ed;
    --yellow: #f2b332;
    --yellow-soft: #e7f0f6;
    --steel: #c9d2d8;
    --steel-dark: #768591;
    --steel-soft: #edf2f5;
    --line: rgba(22, 45, 65, 0.14);
    --shadow: 0 18px 48px rgba(13, 43, 65, 0.14);
}

html {
    scroll-padding-top: 108px;
}

body {
    color: var(--ink);
    background: #fff;
    background-image: none;
}

.scroll-progress span {
    background: var(--orange);
}

.navbar,
.navbar.scrolled {
    min-height: 84px;
    color: #fff;
    background: rgba(16, 58, 89, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(8, 32, 50, 0.18);
}

.nav-brand {
    align-self: stretch;
    display: flex;
    align-items: center;
    padding: 0.35rem 1rem 0.45rem;
    background: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 7px 0 rgba(7, 35, 54, 0.13);
}

.nav-brand .logo {
    width: 205px;
}

.nav-menu a {
    color: #fff;
}

.nav-menu a:not(.nav-phone-btn)::after {
    background: var(--orange);
}

.nav-phone-btn {
    color: var(--blue-dark) !important;
    background: var(--orange);
    box-shadow: 0 7px 0 rgba(0, 0, 0, 0.13);
}

.hamburger {
    color: var(--blue-dark);
    background: var(--orange);
}

.hero {
    min-height: 670px;
    padding: 76px 0 105px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7, 37, 58, 0.96) 0%, rgba(11, 49, 76, 0.91) 47%, rgba(11, 49, 76, 0.65) 100%),
        url('Images/outside-garage.webp') center / cover no-repeat;
    border-radius: 0 0 68px 68px;
}

.hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
    gap: clamp(3rem, 7vw, 6.5rem);
}

.hero-content {
    min-width: 0;
    max-width: 690px;
}

.hero h1 {
    max-width: 100%;
    color: #fff;
    font-size: clamp(3.75rem, 5.65vw, 5.5rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
}

.hero h1 .hero-title-line {
    display: block;
    color: #fff;
    white-space: nowrap;
}

.hero h1 strong {
    display: block;
    color: var(--orange);
}

.hero-copy {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.16rem;
}

.btn-primary {
    color: var(--blue-dark);
    background: var(--orange);
    box-shadow: 0 7px 0 rgba(10, 39, 59, 0.18);
}

.btn-primary:hover {
    box-shadow: 0 3px 0 rgba(10, 39, 59, 0.18);
}

.hero .btn-secondary {
    color: #fff;
    background: rgba(5, 29, 46, 0.34);
    border-color: rgba(255, 255, 255, 0.78);
}

.hero .features {
    gap: 1rem;
}

.hero .feature {
    color: rgba(255, 255, 255, 0.92);
}

.hero .feature i {
    color: var(--orange);
}

.quick-booking {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: #fff;
    background: rgba(7, 38, 60, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.quick-booking-kicker {
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.quick-booking h2 {
    margin: 0.3rem 0 1.25rem;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.05;
}

.quick-field + .quick-field {
    margin-top: 0.95rem;
}

.quick-field label {
    display: block;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    font-weight: 700;
}

.registration-input {
    display: grid;
    grid-template-columns: 52px 1fr;
    overflow: hidden;
    border-radius: 8px;
}

.registration-input > span {
    display: grid;
    place-items: center;
    color: #fff;
    background: #1c4c82;
    font-size: 0.78rem;
    font-weight: 850;
}

.registration-input input,
.quick-field select {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding: 0 1rem;
    color: var(--ink);
    background: #fff;
    border: 0;
    border-radius: 8px;
}

.registration-input input {
    background: #f6d64c;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.quick-booking > .btn {
    width: 100%;
    margin-top: 1.15rem;
    border-radius: 8px;
}

.quick-booking-note {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
}

.quick-booking-note i {
    margin-top: 0.2rem;
    color: #67b66a;
}

.proof-strip {
    --proof-overlap: 45px;
    margin-top: calc(-1 * var(--proof-overlap));
    background: linear-gradient(
        to bottom,
        transparent 0 var(--proof-overlap),
        #f4f7f9 var(--proof-overlap) 100%
    );
}

.proof-strip-grid {
    border: 1px solid rgba(16, 58, 89, 0.1);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(14, 46, 69, 0.14);
}

.proof-strip strong {
    color: var(--blue-dark);
}

.section-jump {
    top: 92px;
    margin-top: 28px;
    border: 1px solid rgba(16, 58, 89, 0.12);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(11, 45, 68, 0.14);
}

.section-jump a:hover,
.section-jump a:focus-visible {
    color: var(--blue-dark);
    background: var(--yellow-soft);
}

.services,
.contact {
    background: #f4f7f9;
}

.services,
.mot-section,
.servicing-section,
.payments-assist-section,
.about,
.booking,
.contact {
    padding-top: 105px;
    padding-bottom: 105px;
}

.section-title,
.section-header h2,
.mot-info h2 {
    font-size: clamp(3.25rem, 5.2vw, 5.3rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.section-title span,
.section-header h2 span {
    color: var(--orange-dark);
}

.services-grid .service-card {
    --card-bg: #fff;
    min-height: 290px;
    padding: 1.7rem;
    background: #fff;
    border: 1px solid rgba(16, 58, 89, 0.12);
    border-top: 5px solid var(--blue);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(14, 47, 70, 0.08);
}

.services-grid .service-card:nth-child(2n) {
    border-top-color: var(--orange);
}

.service-card::after {
    display: none;
}

.service-card:hover {
    box-shadow: 0 18px 36px rgba(14, 47, 70, 0.14);
    transform: translateY(-6px);
}

.service-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 1.25rem;
    color: var(--blue-dark);
    background: var(--blue-soft);
    border-radius: 14px;
    transform: none;
}

.service-card h3 {
    color: var(--blue-dark);
}

.service-card .price {
    color: var(--blue-dark);
    background: var(--yellow-soft);
    border: 1px solid rgba(31, 94, 140, 0.16);
}

.mot-section {
    width: auto;
    margin: 24px;
    background: linear-gradient(135deg, #174f78, var(--blue-dark));
    border-radius: 58px;
}

.mot-section::before {
    border-color: rgba(255, 255, 255, 0.07);
}

.mot-checklist li {
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.mot-booking {
    border-radius: 24px;
}

.mot-reminder {
    background: var(--blue-soft);
    border-radius: 16px;
}

.mot-price {
    background: var(--orange);
    border-radius: 18px;
    transform: none;
}

.servicing-section {
    background: #fff;
}

.servicing-section::before {
    display: none;
}

.servicing-header {
    background: var(--blue-dark);
    border-radius: 18px 18px 0 0;
}

.servicing-row:last-child {
    border-radius: 0 0 18px 18px;
}

.additional-item,
.servicing-note {
    background: var(--steel-soft);
    border: 1px solid rgba(16, 58, 89, 0.09);
    border-radius: 14px;
}

.payments-assist-section {
    background: #eef3f6;
}

.step-card {
    border: 1px solid rgba(16, 58, 89, 0.1);
    border-radius: 18px;
}

.step-card .step-number {
    background: var(--blue);
    border-color: #eef3f6;
}

.step-card .step-icon {
    color: var(--blue-dark);
    background: var(--yellow-soft);
    border-radius: 14px;
    transform: none;
}

.payments-assist-summary {
    color: var(--blue-dark);
    background: var(--yellow-soft);
    border: 1px solid rgba(31, 94, 140, 0.16);
    border-radius: 16px;
}

.about {
    background: #fff;
}

.garage-image {
    border-radius: 28px;
    transform: none;
}

.badge,
.highlight-item {
    border: 1px solid rgba(16, 58, 89, 0.1);
    border-radius: 14px;
}

.indicator {
    background: var(--blue-soft);
    border-radius: 16px;
}

.indicator:nth-child(even) {
    background: var(--steel-soft);
}

.booking {
    width: auto;
    margin: 24px;
    background: linear-gradient(135deg, var(--blue-dark), #1d5a85);
    border-radius: 58px;
}

.booking-form {
    border-radius: 24px;
}

.booking-notice {
    border-radius: 10px;
}

.contact-info,
.map-container {
    border: 1px solid rgba(16, 58, 89, 0.1);
    border-radius: 22px;
}

.contact-item > i {
    color: var(--blue-dark);
    background: var(--yellow-soft);
    border-radius: 10px;
}

.footer {
    background: #0b2e49;
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 132px;
    }

    .navbar,
    .navbar.scrolled {
        min-height: 76px;
    }

    .nav-brand {
        padding-inline: 0.75rem;
        border-radius: 0 0 14px 14px;
    }

    .nav-brand .logo {
        width: 165px;
    }

    .nav-menu {
        color: #fff;
        background: var(--blue-dark);
        border-color: rgba(255, 255, 255, 0.12);
    }

    .nav-menu a {
        color: #fff;
    }

    .nav-phone-btn {
        color: var(--blue-dark) !important;
    }

    .hero {
        min-height: 0;
        padding: 58px 0 88px;
        border-radius: 0 0 40px 40px;
        background:
            linear-gradient(rgba(8, 39, 61, 0.91), rgba(8, 39, 61, 0.85)),
            url('Images/outside-garage.webp') 58% center / cover no-repeat;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2.3rem;
    }

    .quick-booking {
        width: min(580px, 100%);
        margin: 0 auto;
    }

    .section-jump {
        top: 82px;
        display: flex;
        width: calc(100% - 20px);
        max-width: 520px;
        justify-content: center;
        overflow-x: auto;
        margin-top: 18px;
        padding: 0.3rem;
        scrollbar-width: none;
    }

    .section-jump::-webkit-scrollbar {
        display: none;
    }

    .section-jump a {
        flex: 0 0 auto;
        padding: 0.58rem 0.8rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .mot-section,
    .booking {
        margin: 16px;
        border-radius: 40px;
    }
}

@media (max-width: 680px) {
    .hero {
        padding-top: 44px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 12vw, 3.65rem);
        line-height: 0.95;
    }

    .hero h1 .hero-title-line {
        white-space: normal;
    }

    .hero-content,
    .quick-booking {
        width: 100%;
        min-width: 0;
    }

    .hero-buttons {
        display: none;
    }

    .hero .features {
        display: none;
    }

    .hero .feature:last-child {
        grid-column: auto;
    }

    .hero-layout {
        gap: 1.6rem;
    }

    .hero-copy {
        margin-top: 1.25rem;
    }

    .quick-booking {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .quick-booking h2 {
        font-size: 1.5rem;
    }

    .proof-strip {
        --proof-overlap: 28px;
        margin-top: calc(-1 * var(--proof-overlap));
    }

    .section-jump {
        top: 80px;
        justify-content: flex-start;
    }

    .section-title,
    .section-header h2,
    .mot-info h2 {
        font-size: clamp(2.75rem, 12.5vw, 4rem);
    }

    .services,
    .mot-section,
    .servicing-section,
    .payments-assist-section,
    .about,
    .booking,
    .contact {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .services-grid .service-card {
        min-height: 0;
        border-radius: 14px;
    }

    .mot-section,
    .booking {
        margin: 10px 0;
        border-radius: 34px;
    }

    .mot-booking,
    .booking-form {
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .quick-booking,
    .services-grid .service-card {
        transition: none !important;
    }
}

/* GSAP loading and motion layer */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    overflow: hidden;
    color: #fff;
    background: transparent;
    animation: loaderFailsafe 0.01s 3s forwards;
}

.loader-shutter {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.025)),
        repeating-linear-gradient(180deg, #173f5e 0, #173f5e 34px, #0b2d49 35px, #244d6b 37px, #102f49 40px);
    box-shadow: inset 0 0 130px rgba(0, 0, 0, 0.34);
}

.loader-logo {
    position: relative;
    width: 270px;
    padding: 1rem 1.2rem;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3), 0 7px 0 rgba(0, 0, 0, 0.19);
}

.loader-logo img {
    width: 100%;
    height: auto;
}

.loader-logo::before,
.loader-logo::after {
    position: absolute;
    top: 9px;
    width: 5px;
    height: 5px;
    content: '';
    background: #9da8ae;
    border-radius: 50%;
    box-shadow: 0 87px 0 #9da8ae;
}

.loader-logo::before {
    left: 9px;
}

.loader-logo::after {
    right: 9px;
}

.shutter-lockup {
    position: relative;
    z-index: 3;
    display: grid;
    justify-items: center;
}

.shutter-status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.shutter-status span {
    width: 9px;
    height: 9px;
    background: var(--orange);
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(242, 179, 50, 0.12);
}

.shutter-track {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 4;
    width: 22px;
    background: linear-gradient(90deg, #071d2d, #315873 48%, #071d2d);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.48);
}

.shutter-track-left {
    left: 0;
}

.shutter-track-right {
    right: 0;
}

.shutter-bottom-rail {
    position: absolute;
    right: 22px;
    bottom: 0;
    left: 22px;
    z-index: 4;
    height: 20px;
    background: linear-gradient(180deg, #315873, #071d2d);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 -9px 24px rgba(0, 0, 0, 0.22);
}

.shutter-bottom-rail span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange);
    box-shadow: 0 0 16px rgba(242, 179, 50, 0.7);
    transform: scaleX(0);
    transform-origin: center;
}

.quick-booking::before {
    position: absolute;
    top: 0;
    right: 24px;
    left: 24px;
    height: 4px;
    content: '';
    background: linear-gradient(90deg, var(--orange), #f7d96f, var(--orange));
    border-radius: 0 0 999px 999px;
    transform: scaleX(0.35);
    transform-origin: center;
}

.gsap-enhanced body.is-loading {
    overflow: hidden;
}

@keyframes loaderFailsafe {
    to {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 680px) {
    .loader-shutter {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 14%, transparent 86%, rgba(255, 255, 255, 0.025)),
            repeating-linear-gradient(180deg, #173f5e 0, #173f5e 27px, #0b2d49 28px, #244d6b 30px, #102f49 33px);
    }

    .loader-logo {
        width: 220px;
        padding: 0.85rem 1rem;
    }

    .loader-logo::before,
    .loader-logo::after {
        box-shadow: 0 72px 0 #9da8ae;
    }

    .shutter-track {
        width: 14px;
    }

    .shutter-bottom-rail {
        right: 14px;
        left: 14px;
        height: 16px;
    }

    .shutter-status {
        margin-top: 1rem;
        font-size: 0.68rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-loader {
        display: none !important;
    }
}

/* Workshop services bay */
.services {
    isolation: isolate;
    width: auto;
    margin: 0;
    padding: clamp(88px, 7vw, 110px) 0;
    overflow: hidden;
    color: var(--ink);
    background:
        linear-gradient(145deg, #f4f7f9 0%, #ffffff 64%, #edf2f5 100%);
    border-radius: 0;
    box-shadow: none;
}

.services .services-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: block;
    background:
        radial-gradient(circle at 86% 10%, rgba(31, 94, 140, 0.1), transparent 28%),
        radial-gradient(circle at 12% 88%, rgba(54, 117, 166, 0.055), transparent 24%),
        repeating-linear-gradient(135deg, transparent 0 42px, rgba(11, 45, 73, 0.025) 43px, transparent 44px);
    pointer-events: none;
}

.services > .container {
    position: relative;
    z-index: 1;
}

.services-workshop {
    display: grid;
    grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.38fr);
    gap: clamp(2.8rem, 6vw, 5.5rem);
    align-items: start;
}

.services-intro {
    position: relative;
    top: auto;
}

.services .section-heading {
    max-width: 430px;
    margin: 0;
    text-align: left;
}

.services .section-heading .section-eyebrow {
    justify-content: flex-start;
    color: var(--orange-dark);
}

.services .section-title {
    color: var(--blue-dark);
    font-size: clamp(3.7rem, 4.6vw, 4.8rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
}

.services .section-title span {
    color: var(--orange-dark);
}

.services .section-subtitle {
    max-width: 420px;
    margin: 1.4rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.services-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.1rem;
    align-items: center;
    margin-top: 2rem;
}

.services-intro-actions .btn-primary {
    color: var(--blue-dark);
    background: var(--orange);
    box-shadow: 0 7px 0 rgba(0, 0, 0, 0.18);
}

.services-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0;
    color: var(--blue-dark);
    font-weight: 850;
    text-decoration: none;
}

.services-phone i {
    color: var(--orange);
}

.services-guidance {
    display: flex;
    max-width: 430px;
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 2.3rem;
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(11, 45, 73, 0.1);
    border-left: 4px solid var(--orange);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(14, 47, 70, 0.07);
}

.services-guidance > i {
    margin-top: 0.18rem;
    color: var(--blue);
    font-size: 1.1rem;
}

.services-guidance p {
    display: grid;
    gap: 0.1rem;
}

.services-guidance strong {
    color: var(--blue-dark);
    font-size: 0.95rem;
}

.services-guidance span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.4;
}

.services-list {
    min-width: 0;
}

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

.services .services-grid .service-card {
    min-height: 215px;
    padding: 1.45rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(11, 45, 73, 0.1);
    border-top: 1px solid rgba(11, 45, 73, 0.1);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(14, 47, 70, 0.08);
    transform: none;
}

.services .services-grid .service-card:nth-child(-n + 2) {
    min-height: 305px;
    padding: 1.8rem;
    color: var(--blue-dark);
    background: var(--paper);
    border-color: rgba(11, 45, 73, 0.1);
}

.services .services-grid .service-card:nth-child(1) {
    color: #fff;
    background: linear-gradient(145deg, #174f78, var(--blue-dark));
    border-color: rgba(255, 255, 255, 0.12);
}

.services .services-grid .service-card:nth-child(2) {
    border-top: 4px solid var(--orange);
}

.services .service-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 4px;
    content: '';
    background: var(--orange);
    border: 0;
    border-radius: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.services .service-card:hover {
    box-shadow: 0 22px 42px rgba(14, 47, 70, 0.15);
    transform: translateY(-7px);
}

.services .service-card:hover::after {
    transform: scaleX(1);
}

.services .service-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1.1rem;
    color: var(--blue-dark);
    background: var(--blue-soft);
    border: 1px solid rgba(11, 45, 73, 0.06);
    border-radius: 14px;
    font-size: 1.35rem;
    transform: none;
}

.services .service-card:nth-child(-n + 2) .service-icon {
    width: 66px;
    height: 66px;
    color: var(--blue-dark);
    background: var(--blue-soft);
    border: 0;
    font-size: 1.65rem;
}

.services .service-card:nth-child(1) .service-icon {
    color: var(--orange);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.services .service-icon.service-icon--asset {
    background: var(--blue-dark);
    border-color: rgba(255, 255, 255, 0.16);
}

.services .service-icon.service-icon--asset img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

.services #service-mot .service-icon.service-icon--asset {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
}

.services #service-mot .service-icon.service-icon--asset img {
    width: 42px;
    height: 42px;
}

.services .service-card h3 {
    margin-bottom: 0.5rem;
    color: var(--blue-dark);
    font-size: 1.45rem;
}

.services .service-card:nth-child(-n + 2) h3 {
    color: var(--blue-dark);
    font-size: 1.85rem;
}

.services .service-card:nth-child(1) h3 {
    color: #fff;
}

.services .service-card p {
    margin-bottom: 1.25rem;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.45;
}

.services .service-card:nth-child(-n + 2) p {
    color: var(--muted);
    font-size: 1rem;
}

.services .service-card:nth-child(1) p {
    color: rgba(255, 255, 255, 0.7);
}

.service-badge {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.35rem 0.55rem;
    color: var(--orange-dark);
    background: var(--yellow-soft);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card-footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
}

.services .service-card .price {
    margin: 0;
    padding: 0;
    color: var(--orange-dark);
    background: transparent;
    border: 0;
    border-radius: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    line-height: 1;
}

.services .service-card:nth-child(-n + 2) .price {
    color: var(--orange-dark);
    font-size: 2.25rem;
}

.services .service-card:nth-child(1) .price {
    color: var(--orange);
}

.service-action {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--blue-dark);
    font-size: 0.84rem;
    font-weight: 850;
    text-decoration: none;
}

.services .service-card:nth-child(-n + 2) .service-action {
    color: var(--blue-dark);
}

.services .service-card:nth-child(1) .service-action {
    color: #fff;
}

.service-action i {
    color: var(--orange);
    font-size: 0.72rem;
    transition: transform 0.25s ease;
}

.service-action:hover i,
.service-action:focus-visible i {
    transform: translateX(4px);
}

.services-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.services .services-toggle {
    margin: 0;
    color: var(--blue-dark);
    border-color: rgba(11, 45, 73, 0.4);
}

.services .services-toggle:hover,
.services .services-toggle:focus-visible {
    color: var(--blue-dark);
    background: var(--orange);
    border-color: var(--orange);
}

.services-actions p {
    color: var(--muted);
    font-size: 0.82rem;
}

@media (max-width: 1100px) {
    .services {
        margin: 0;
        border-radius: 0;
    }

    .services-workshop {
        grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
        gap: 2.2rem;
    }

    .services .section-title {
        font-size: clamp(3.5rem, 6.2vw, 4.7rem);
    }

    .services .services-grid .service-card:nth-child(-n + 2) {
        min-height: 290px;
    }
}

@media (max-width: 900px) {
    .services {
        margin: 0;
        padding: 86px 0;
        background: linear-gradient(145deg, #f4f7f9 0%, #ffffff 64%, #edf2f5 100%);
        border-radius: 0;
    }

    .services-workshop {
        grid-template-columns: 1fr;
    }

    .services-intro {
        position: relative;
        top: auto;
    }

    .services .section-heading {
        max-width: 700px;
    }

    .services .section-title {
        font-size: clamp(3.6rem, 9vw, 5rem);
    }

    .services .section-subtitle {
        max-width: 590px;
    }

    .services-intro-actions {
        margin-top: 1.6rem;
    }

    .services-guidance {
        max-width: 520px;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 680px) {
    .services {
        margin: 0;
        padding: 72px 0;
        border-radius: 0;
    }

    .services > .container {
        width: min(100% - 32px, 1180px);
    }

    .services .section-title {
        font-size: clamp(3.25rem, 14vw, 4.2rem);
    }

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

    .services-intro-actions .btn,
    .services-phone {
        justify-content: center;
    }

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

    .services .services-grid .service-card,
    .services .services-grid .service-card:nth-child(-n + 2) {
        min-height: 0;
        padding: 1.4rem;
        border-radius: 18px;
    }

    .services .service-card:nth-child(-n + 2) .price {
        font-size: 1.9rem;
    }

    .services-guidance {
        margin-top: 1.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services .service-card,
    .service-action i {
        transition: none !important;
    }
}

/* MOT inspection lane */
.mot-section {
    isolation: auto;
    width: auto;
    margin: 0;
    padding: 0;
    overflow: visible;
    color: #fff;
    background: linear-gradient(to bottom, #f4f7f9 0 48%, #fff 48% 100%);
    border-radius: 0;
    box-shadow: none;
}

.mot-section::before {
    display: none;
}

.mot-shell {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(92px, 7vw, 116px) 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(45, 125, 177, 0.32), transparent 27%),
        linear-gradient(118deg, #174f78 0%, #103f63 48%, #0b2d49 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: clamp(72px, 7vw, 116px) 0 clamp(72px, 7vw, 116px) 0;
    box-shadow: 0 30px 70px rgba(10, 43, 66, 0.16);
}

.mot-bay-lines {
    position: absolute;
    inset: 0 0 0 35%;
    z-index: -1;
    overflow: hidden;
    opacity: 0.4;
    background:
        linear-gradient(116deg, transparent 0 24%, rgba(255, 255, 255, 0.08) 24.2% 24.45%, transparent 24.7% 49%, rgba(255, 255, 255, 0.055) 49.2% 49.45%, transparent 49.7%),
        repeating-linear-gradient(0deg, transparent 0 51px, rgba(255, 255, 255, 0.045) 52px 53px);
    pointer-events: none;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 28%);
    mask-image: linear-gradient(90deg, transparent, #000 28%);
}

.mot-bay-lines::before {
    position: absolute;
    right: 9%;
    bottom: -14%;
    width: 46%;
    height: 78%;
    content: '';
    background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.075) 0 2px, transparent 2px 48px);
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    transform: skewX(-14deg);
}

.mot-bay-lines::after {
    position: absolute;
    right: clamp(2rem, 5vw, 5rem);
    bottom: 2rem;
    content: 'MOT / INSPECTION LANE';
    color: rgba(255, 255, 255, 0.17);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.mot-background-logo {
    position: absolute;
    top: clamp(1.5rem, 3vw, 2.8rem);
    right: auto;
    left: 50%;
    z-index: 0;
    width: clamp(190px, 18vw, 260px);
    height: auto;
    opacity: 0.18;
    pointer-events: none;
    transform: translateX(-50%) rotate(-4deg);
}

.mot-section .container {
    width: min(1220px, calc(100% - 48px));
}

.mot-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
    grid-template-areas:
        'heading offer'
        'checks reminder';
    gap: 1.7rem clamp(4rem, 7vw, 7rem);
    align-items: start;
}

.mot-heading {
    grid-area: heading;
}

.mot-heading .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--yellow);
}

.mot-heading .section-eyebrow i {
    font-size: 0.85rem;
}

.mot-heading h2 {
    max-width: 8ch;
    margin-top: 1rem;
    color: #fff;
    font-family: 'Source Sans 3', sans-serif;
    font-size: clamp(4.7rem, 6.3vw, 6.6rem);
    font-weight: 850;
    line-height: 0.86;
    letter-spacing: -0.06em;
}

.mot-heading h2 span {
    color: var(--orange);
}

.mot-lede {
    max-width: 570px;
    margin-top: 1.55rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.13rem;
    line-height: 1.55;
}

.mot-offer-card {
    position: relative;
    grid-area: offer;
    margin-top: 4.5rem;
    padding: 6.8rem 2.1rem 2rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 30px 30px 30px 9px;
    box-shadow: 0 32px 70px rgba(4, 23, 38, 0.34);
}

.mot-price-plate {
    position: absolute;
    top: -4rem;
    left: -2.4rem;
    display: grid;
    width: min(390px, calc(100% + 1rem));
    grid-template-columns: auto 1fr;
    grid-template-areas:
        'kicker proof'
        'price proof';
    gap: 0.15rem 1.2rem;
    align-items: end;
    padding: 1.15rem 1.35rem 1.25rem;
    color: var(--ink);
    background: linear-gradient(135deg, #f6bf50, var(--orange));
    border: 1px solid rgba(23, 36, 57, 0.15);
    border-radius: 18px 18px 18px 5px;
    box-shadow: 0 16px 34px rgba(4, 23, 38, 0.28);
}

.mot-price-plate::before,
.mot-price-plate::after {
    position: absolute;
    top: 10px;
    width: 6px;
    height: 6px;
    content: '';
    background: rgba(23, 36, 57, 0.38);
    border-radius: 50%;
}

.mot-price-plate::before {
    left: 11px;
}

.mot-price-plate::after {
    right: 11px;
}

.mot-price-kicker {
    grid-area: kicker;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mot-price-value {
    grid-area: price;
    display: inline-flex;
    align-items: flex-end;
    gap: 0.09em;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 4.85rem;
    font-weight: 900;
    line-height: 0.78;
    letter-spacing: normal;
    white-space: nowrap;
}

.mot-price-major {
    display: inline-block;
    letter-spacing: -0.055em;
}

.mot-price-value small {
    flex: 0 0 auto;
    margin-bottom: 0.04em;
    font-size: 0.3em;
    line-height: 0.9;
    letter-spacing: -0.015em;
}

.mot-price-proof {
    grid-area: proof;
    align-self: center;
    padding-left: 1.05rem;
    border-left: 1px solid rgba(23, 36, 57, 0.24);
}

.mot-price-proof strong,
.mot-price-proof small {
    display: block;
}

.mot-price-proof strong {
    font-size: 1rem;
}

.mot-price-proof small {
    margin-top: 0.25rem;
    color: rgba(23, 36, 57, 0.76);
    font-size: 0.78rem;
    font-weight: 700;
}

.mot-card-label {
    color: var(--orange-dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mot-offer-card h3 {
    margin-top: 0.55rem;
    color: var(--blue-dark);
    font-size: 2.45rem;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.mot-offer-card > p:not(.mot-card-label) {
    margin-top: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

.mot-primary-action {
    width: 100%;
    margin-top: 1.5rem;
    color: #fff;
    background: var(--orange-dark);
}

.mot-primary-action i {
    font-size: 0.82rem;
    transition: transform 0.25s ease;
}

.mot-primary-action:hover i,
.mot-primary-action:focus-visible i {
    transform: translateX(4px);
}

.mot-confirmation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--line);
    color: var(--blue-dark);
    font-size: 0.84rem;
    font-weight: 800;
}

.mot-confirmation span {
    display: flex;
    align-items: center;
    gap: 0.42rem;
}

.mot-confirmation i {
    color: var(--orange-dark);
}

.mot-offer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--blue-dark);
    font-size: 0.9rem;
    font-weight: 850;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mot-offer-phone:hover,
.mot-offer-phone:focus-visible {
    color: var(--orange-dark);
}

.mot-offer-phone i {
    color: var(--orange-dark);
}

.mot-inspection {
    grid-area: checks;
}

.mot-inspection-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.mot-inspection-heading h3 {
    color: var(--yellow-soft);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.94rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.mot-inspection-heading span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 700;
}

.mot-inspection-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    list-style: none;
}

.mot-inspection-list li {
    display: flex;
    min-height: 60px;
    align-items: center;
    gap: 0.75rem;
    padding: 0.72rem 0.85rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    font-size: 0.91rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.mot-inspection-list i {
    display: grid;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--yellow);
    background: rgba(255, 255, 255, 0.09);
    border-radius: 10px;
}

.mot-reminder-panel {
    grid-area: reminder;
    overflow: hidden;
    color: #fff;
    background: rgba(4, 28, 46, 0.33);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    backdrop-filter: blur(8px);
}

.mot-reminder-panel summary {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.05rem;
    list-style: none;
    cursor: pointer;
}

.mot-reminder-panel summary::-webkit-details-marker {
    display: none;
}

.mot-reminder-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.mot-reminder-title > i {
    display: grid;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--blue-dark);
    background: var(--orange);
    border-radius: 11px;
}

.mot-reminder-title strong,
.mot-reminder-title small {
    display: block;
}

.mot-reminder-title strong {
    font-size: 1rem;
}

.mot-reminder-title small {
    margin-top: 0.12rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.76rem;
}

.mot-reminder-action {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.45rem;
    color: var(--yellow);
    font-size: 0.82rem;
    font-weight: 850;
}

.mot-reminder-action i {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.mot-reminder-panel[open] .mot-reminder-action i {
    transform: rotate(180deg);
}

.mot-reminder-body {
    padding: 1.2rem;
    background: rgba(4, 28, 46, 0.42);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mot-reminder-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mot-reminder-intro p {
    max-width: 270px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    line-height: 1.45;
}

.mot-reminder-intro a {
    color: var(--yellow);
    font-size: 0.8rem;
    font-weight: 800;
    text-align: right;
}

.mot-reminder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.mot-reminder-field {
    display: grid;
    gap: 0.38rem;
}

.mot-reminder-field label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 750;
}

.mot-reminder-panel .mot-reminder-field input {
    min-width: 0;
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 0.8rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 10px;
}

.mot-reminder-panel .reminder-form .btn {
    width: 100%;
    min-height: 48px;
    align-self: end;
    margin: 0;
    color: var(--blue-dark);
    background: var(--orange);
    border-color: var(--orange);
    border-radius: 10px;
}

.mot-reminder-privacy {
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.74rem;
    line-height: 1.4;
}

.mot-reminder-privacy a {
    color: #fff;
    font-weight: 800;
}

@media (max-width: 900px) {
    .mot-section {
        margin: 0;
        padding: 0;
        border-radius: 0;
    }

    .mot-shell {
        padding: 72px 0 78px;
        border-radius: 54px 0 54px 0;
    }

    .mot-section .container {
        width: min(100% - 40px, 760px);
    }

    .mot-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            'heading'
            'offer'
            'checks'
            'reminder';
        gap: 1.55rem;
    }

    .mot-heading h2 {
        max-width: none;
        font-size: clamp(3.9rem, 10.5vw, 5.4rem);
    }

    .mot-lede {
        max-width: 620px;
        margin-top: 1.15rem;
    }

    .mot-offer-card {
        margin-top: 4.2rem;
        padding-top: 6.6rem;
    }

    .mot-price-plate {
        right: 1.3rem;
        left: 1.3rem;
        width: auto;
    }

    .mot-bay-lines {
        inset: 20% -35% 0 14%;
        opacity: 0.28;
    }

    .mot-background-logo {
        top: 3.2rem;
        left: auto;
        right: -2.8rem;
        width: clamp(190px, 42vw, 260px);
        opacity: 0.11;
        transform: rotate(-5deg);
    }
}

@media (max-width: 560px) {
    .mot-shell {
        padding: 60px 0 68px;
        border-radius: 42px 0 42px 0;
    }

    .mot-section .container {
        width: min(100% - 32px, 1180px);
    }

    .mot-layout {
        gap: 1.35rem;
    }

    .mot-heading h2 {
        max-width: 8ch;
        margin-top: 0.8rem;
        font-size: clamp(3.2rem, 14.6vw, 4.15rem);
        line-height: 0.9;
    }

    .mot-lede {
        margin-top: 1rem;
        font-size: 1rem;
    }

    .mot-offer-card {
        margin-top: 3.8rem;
        padding: 5.9rem 1.25rem 1.35rem;
        border-radius: 24px 24px 24px 8px;
    }

    .mot-price-plate {
        top: -3.45rem;
        right: 0.9rem;
        left: 0.9rem;
        grid-template-columns: auto 1fr;
        gap: 0.1rem 0.8rem;
        padding: 1rem 1.05rem 1.1rem;
    }

    .mot-price-value {
        font-size: 4rem;
    }

    .mot-price-proof {
        padding-left: 0.8rem;
    }

    .mot-offer-card h3 {
        font-size: 2.1rem;
    }

    .mot-primary-action {
        min-height: 56px;
    }

    .mot-confirmation {
        grid-template-columns: 1fr;
    }

    .mot-inspection-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }

    .mot-inspection-list {
        grid-template-columns: 1fr;
    }

    .mot-reminder-panel summary {
        min-height: 82px;
        align-items: flex-start;
        padding: 0.9rem;
    }

    .mot-reminder-action {
        margin-top: 0.75rem;
        font-size: 0;
    }

    .mot-reminder-action i {
        font-size: 0.8rem;
    }

    .mot-reminder-intro {
        flex-direction: column;
    }

    .mot-reminder-intro p {
        max-width: none;
    }

    .mot-reminder-intro a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        text-align: left;
    }

    .mot-reminder-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mot-primary-action i,
    .mot-reminder-action i {
        transition: none !important;
    }
}

/* Workshop service rate board */
.servicing-section {
    isolation: isolate;
    padding: clamp(96px, 8vw, 128px) 0 170px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(201, 210, 216, 0.22), transparent 24%),
        radial-gradient(circle at 94% 34%, rgba(31, 94, 140, 0.1), transparent 26%),
        linear-gradient(145deg, #ffffff 0%, #f4f7f9 58%, #edf2f5 100%);
    text-align: left;
}

.servicing-section::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: block;
    width: auto;
    height: auto;
    content: '';
    background:
        repeating-linear-gradient(90deg, transparent 0 119px, rgba(11, 45, 73, 0.025) 120px 121px),
        repeating-linear-gradient(0deg, transparent 0 71px, rgba(11, 45, 73, 0.02) 72px 73px);
    border: 0;
    border-radius: 0;
    pointer-events: none;
}

.servicing-section .container {
    position: relative;
    z-index: 1;
    width: min(1220px, calc(100% - 48px));
}

.servicing-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
    gap: clamp(2.8rem, 6vw, 5.5rem);
    align-items: center;
}

.servicing-media {
    display: grid;
    gap: 1rem;
}

.servicing-workshop-photo {
    position: relative;
    aspect-ratio: 16 / 9;
    margin: 0;
    isolation: isolate;
    overflow: hidden;
    background: var(--blue-dark);
    border: 1px solid rgba(11, 45, 73, 0.14);
    border-radius: 12px 40px 12px 40px;
    box-shadow: 0 24px 54px rgba(14, 47, 70, 0.18);
}

.servicing-workshop-photo::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: '';
    background:
        linear-gradient(180deg, transparent 38%, rgba(5, 27, 44, 0.82) 100%),
        linear-gradient(90deg, rgba(9, 43, 68, 0.14), transparent 55%);
    pointer-events: none;
}

.servicing-workshop-photo img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 58%;
    filter: saturate(0.82) contrast(1.05);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}

.servicing-workshop-photo figcaption {
    position: absolute;
    right: 1.25rem;
    bottom: 1.15rem;
    left: 1.25rem;
    z-index: 2;
    display: grid;
    gap: 0.22rem;
    color: #fff;
}

.servicing-workshop-photo figcaption span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--yellow);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.servicing-workshop-photo figcaption strong {
    max-width: 330px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.6rem, 2.2vw, 2.15rem);
    line-height: 0.96;
    letter-spacing: -0.025em;
}

@media (hover: hover) {
    .servicing-workshop-photo:hover img {
        filter: saturate(0.9) contrast(1.06);
        transform: scale(1.035);
    }
}

.servicing-heading .section-eyebrow {
    justify-content: flex-start;
    gap: 0.55rem;
    color: var(--orange-dark);
}

.servicing-heading .section-eyebrow i {
    color: var(--blue-dark);
}

.servicing-section .section-title {
    max-width: 820px;
    margin-top: 0.9rem;
    color: var(--blue-dark);
    font-size: clamp(4.2rem, 6vw, 6.1rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
}

.servicing-section .section-title span {
    color: var(--orange-dark);
}

.servicing-section .section-subtitle {
    max-width: 660px;
    margin: 1.35rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.55;
}

.servicing-promise {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    overflow: hidden;
    color: var(--blue-dark);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(11, 45, 73, 0.11);
    border-left: 5px solid var(--orange);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(14, 47, 70, 0.1);
}

.servicing-promise::after {
    position: absolute;
    right: -38px;
    bottom: -44px;
    width: 110px;
    height: 110px;
    content: '';
    border: 20px solid rgba(31, 94, 140, 0.06);
    border-radius: 50%;
}

.servicing-promise-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--blue-dark);
    background: var(--yellow-soft);
    border-radius: 13px;
    font-size: 1.25rem;
}

.servicing-promise-label {
    margin-bottom: 0.4rem;
    color: var(--orange-dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.servicing-promise p:not(.servicing-promise-label) {
    position: relative;
    z-index: 1;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.servicing-promise p + p {
    margin-top: 0.55rem;
}

.servicing-promise strong {
    color: var(--blue-dark);
}

.servicing-board {
    position: relative;
    margin-top: clamp(3.8rem, 6vw, 5.4rem);
    padding: 1.2rem;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(24, 78, 117, 0.96), rgba(8, 38, 60, 0.99)),
        var(--blue-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 34px 34px 34px 10px;
    box-shadow: 0 34px 78px rgba(9, 43, 67, 0.24);
}

.servicing-board::before,
.servicing-board::after {
    position: absolute;
    z-index: 3;
    width: 9px;
    height: 9px;
    content: '';
    background: var(--orange);
    border: 2px solid rgba(6, 29, 46, 0.65);
    border-radius: 50%;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

.servicing-board::before {
    top: 14px;
    left: 14px;
}

.servicing-board::after {
    right: 14px;
    bottom: 14px;
}

.servicing-board-topbar {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1rem 1rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.servicing-board-topbar span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--yellow);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
}

.service-package-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    align-items: start;
}

@media (min-width: 801px) {
    .service-package-guide:has(.service-package[open]) {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-package-guide:has(.service-package-full[open]) .service-package-full {
        order: -1;
    }
}

.service-package {
    overflow: hidden;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
}

.service-package-full {
    border-top: 4px solid var(--orange);
}

.service-package summary {
    display: grid;
    min-height: 124px;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    list-style: none;
    cursor: pointer;
}

.service-package summary::-webkit-details-marker {
    display: none;
}

.service-package-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--blue-dark);
    background: var(--blue-soft);
    border-radius: 14px;
    font-size: 1.35rem;
}

.service-package-full .service-package-icon {
    color: var(--orange-dark);
    background: var(--yellow-soft);
}

.service-package-copy {
    display: grid;
    gap: 0.15rem;
}

.service-package-kicker {
    color: var(--orange-dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.87rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-package-copy strong {
    color: var(--blue-dark);
    font-size: 1.55rem;
    line-height: 1.05;
}

.service-package-copy small {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.service-package-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--blue-dark);
    font-size: 0.78rem;
    font-weight: 850;
    white-space: nowrap;
}

.service-package-toggle i {
    color: var(--orange-dark);
    font-size: 0.68rem;
    transition: transform 0.25s ease;
}

.service-package[open] .service-package-toggle i {
    transform: rotate(180deg);
}

.service-package-details {
    padding: 1.15rem 1.3rem 1.3rem;
    background: var(--steel-soft);
    border-top: 1px solid rgba(11, 45, 73, 0.1);
}

.service-package-details p {
    margin-bottom: 0.7rem;
    color: var(--blue-dark);
    font-size: 0.9rem;
}

.service-package-details ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.3rem;
    margin: 0;
    list-style: none;
}

.service-package-details li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.35;
}

.service-package-details li::before {
    position: absolute;
    top: 0.04em;
    left: 0;
    content: '✓';
    color: var(--mint);
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.2;
}

.servicing-table-wrap {
    margin-top: 0.9rem;
    overflow: hidden;
    background: var(--paper);
    border-radius: 20px;
}

.servicing-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--blue-dark);
    font-variant-numeric: tabular-nums;
}

.servicing-table th,
.servicing-table td {
    padding: 1.2rem 1.35rem;
}

.servicing-table thead th {
    color: #fff;
    background: #164e76;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.servicing-table thead th:first-child {
    width: 34%;
    text-align: left;
}

.servicing-table thead th:nth-child(2),
.servicing-table thead th:nth-child(3) {
    width: 33%;
}

.servicing-table thead .full-service-column {
    color: var(--blue-dark);
    background: var(--orange);
}

.servicing-table tbody th,
.servicing-table tbody td {
    background: #fff;
    border-bottom: 1px solid rgba(11, 45, 73, 0.1);
}

.servicing-table tbody th {
    color: var(--blue-dark);
    font-size: 0.95rem;
    text-align: left;
}

.servicing-table tbody td {
    color: var(--blue-dark);
    font-size: 1.16rem;
    font-weight: 900;
    text-align: center;
}

.servicing-table .full-service-price {
    color: var(--orange-dark);
    background: rgba(242, 179, 50, 0.075);
    border-right: 1px solid rgba(242, 179, 50, 0.14);
    border-left: 1px solid rgba(242, 179, 50, 0.14);
}

.servicing-table .servicing-row {
    display: table-row;
    transition: background 0.22s ease;
}

.servicing-table .servicing-row:hover {
    box-shadow: none;
    transform: none;
}

.servicing-table .servicing-row:hover th,
.servicing-table .servicing-row:hover td {
    background: var(--blue-soft);
}

.servicing-table .servicing-row:hover .full-service-price {
    background: var(--yellow-soft);
}

.servicing-table .servicing-row:last-child th,
.servicing-table .servicing-row:last-child td {
    border-bottom: 0;
}

.servicing-table .servicing-row-tailored td {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--orange-dark);
    background: var(--yellow-soft);
    font-size: 1rem;
}

.servicing-row-tailored td span {
    font-weight: 900;
}

.servicing-row-tailored td a {
    color: var(--blue-dark);
    font-size: 0.86rem;
    font-weight: 850;
}

.servicing-booking-rail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 0.9rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
}

.servicing-booking-rail > div:first-child {
    display: grid;
    gap: 0.2rem;
    max-width: 510px;
}

.servicing-booking-rail strong {
    color: #fff;
    font-size: 1.05rem;
}

.servicing-booking-rail span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.83rem;
    line-height: 1.4;
}

.servicing-booking-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 0.7rem;
}

.servicing-booking-actions .btn {
    min-height: 48px;
    padding: 0.75rem 1rem;
    font-size: 0.86rem;
}

.servicing-booking-actions .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.servicing-booking-actions .btn-outline:hover,
.servicing-booking-actions .btn-outline:focus-visible {
    color: var(--blue-dark);
    background: #fff;
}

.servicing-booking-actions .btn-primary {
    color: var(--blue-dark);
    background: var(--orange);
}

.servicing-section .additional-services {
    max-width: none;
    margin: clamp(3.8rem, 6vw, 5.5rem) 0 0;
}

.additional-services-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.additional-services-heading .section-eyebrow {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
    color: var(--orange-dark);
}

.additional-services-heading h3 {
    margin: 0;
    color: var(--blue-dark);
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 1;
    letter-spacing: -0.035em;
}

.additional-services-heading > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.55rem;
    color: var(--blue-dark);
    font-weight: 850;
    text-decoration: none;
    transition: color 0.2s ease;
}

.additional-services-heading > a:hover,
.additional-services-heading > a:focus-visible {
    color: var(--orange-dark);
}

.additional-services-heading > a i {
    color: var(--orange-dark);
}

.servicing-section .additional-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.servicing-section .additional-item {
    display: grid;
    min-height: 92px;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem;
    color: var(--blue-dark);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(11, 45, 73, 0.11);
    border-left: 4px solid var(--orange);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(14, 47, 70, 0.07);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.servicing-section .additional-item:hover {
    box-shadow: 0 20px 36px rgba(14, 47, 70, 0.12);
    transform: translateY(-5px);
}

.additional-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--blue-dark);
    background: var(--blue-soft);
    border-radius: 10px;
}

.servicing-section .service-name {
    color: var(--blue-dark);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.25;
}

.servicing-section .service-price {
    color: var(--orange-dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.payments-assist-section {
    position: relative;
    z-index: 2;
    margin-top: -72px;
    border-radius: 72px 72px 0 0;
}

@media (max-width: 1000px) {
    .servicing-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .servicing-promise {
        max-width: 720px;
    }

    .servicing-media {
        width: min(100%, 720px);
    }

    .service-package summary {
        grid-template-columns: auto 1fr;
    }

    .service-package-toggle {
        grid-column: 2;
    }

    .servicing-booking-rail {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 800px) {
    .servicing-section {
        padding: 82px 0 140px;
    }

    .servicing-section .container {
        width: min(100% - 40px, 760px);
    }

    .servicing-section .section-title {
        font-size: clamp(3.6rem, 10vw, 5rem);
    }

    .service-package-guide {
        grid-template-columns: 1fr;
    }

    .servicing-booking-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .servicing-booking-actions .btn {
        flex: 1 1 220px;
    }

    .additional-services-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.8rem;
    }

    .servicing-section .additional-grid {
        grid-template-columns: 1fr 1fr;
    }

    .payments-assist-section {
        margin-top: -54px;
        border-radius: 54px 54px 0 0;
    }
}

@media (max-width: 680px) {
    .servicing-section {
        padding: 72px 0 124px;
    }

    .servicing-section .container {
        width: min(100% - 32px, 1180px);
    }

    .servicing-section .section-title {
        font-size: clamp(3.1rem, 14vw, 4.1rem);
    }

    .servicing-promise {
        grid-template-columns: 1fr;
        padding: 1.2rem;
    }

    .servicing-media {
        gap: 0.8rem;
    }

    .servicing-workshop-photo {
        aspect-ratio: 4 / 3;
        border-radius: 10px 28px 10px 28px;
    }

    .servicing-workshop-photo img {
        object-position: 55% 58%;
    }

    .servicing-workshop-photo figcaption {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
    }

    .servicing-board {
        margin-top: 3.1rem;
        padding: 0.7rem;
        border-radius: 24px 24px 24px 8px;
    }

    .servicing-board-topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.9rem 0.85rem;
    }

    .service-package summary {
        min-height: 0;
        grid-template-columns: auto 1fr;
        gap: 0.8rem;
        padding: 1rem;
    }

    .service-package-icon {
        width: 46px;
        height: 46px;
    }

    .service-package-copy strong {
        font-size: 1.35rem;
    }

    .service-package-toggle {
        grid-column: 2;
        white-space: normal;
    }

    .service-package-details ul {
        grid-template-columns: 1fr;
    }

    .servicing-table-wrap {
        background: transparent;
    }

    .servicing-table,
    .servicing-table tbody,
    .servicing-table tr,
    .servicing-table th,
    .servicing-table td {
        display: block;
        width: 100%;
    }

    .servicing-table thead {
        display: none;
    }

    .servicing-table .servicing-row {
        display: block;
        margin-bottom: 0.75rem;
        padding: 0;
        overflow: hidden;
        background: #fff;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 14px !important;
    }

    .servicing-table .servicing-row:last-child {
        margin-bottom: 0;
    }

    .servicing-table .servicing-row th {
        padding: 0.85rem 1rem;
        color: #fff;
        background: #164e76;
        border: 0;
        text-align: left;
    }

    .servicing-table .servicing-row td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.9rem 1rem;
        background: #fff;
        border: 0;
        border-bottom: 1px solid rgba(11, 45, 73, 0.1);
        text-align: right;
    }

    .servicing-table .servicing-row td::before {
        content: attr(data-label);
        color: var(--muted);
        font-size: 0.82rem;
        font-weight: 750;
        text-align: left;
    }

    .servicing-table .servicing-row .full-service-price {
        color: var(--orange-dark);
        background: var(--yellow-soft);
        border: 0;
    }

    .servicing-table .servicing-row-tailored td {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
        background: var(--yellow-soft);
        text-align: left;
    }

    .servicing-table .servicing-row-tailored td::before {
        display: none;
    }

    .servicing-booking-rail {
        padding: 1rem;
    }

    .servicing-booking-actions {
        flex-direction: column;
    }

    .servicing-booking-actions .btn {
        width: 100%;
        flex: none;
    }

    .servicing-section .additional-grid {
        grid-template-columns: 1fr;
    }

    .servicing-section .additional-item {
        min-height: 78px;
    }

    .payments-assist-section {
        margin-top: -42px;
        border-radius: 42px 42px 0 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-package-toggle i,
    .servicing-table .servicing-row,
    .servicing-section .additional-item {
        transition: none !important;
    }
}

/* Workshop fascia navigation */
:root {
    --nav-height: 82px;
    --service-rail-height: 46px;
    --mobile-action-height: 68px;
}

html {
    scroll-padding-top: calc(var(--nav-height) + var(--service-rail-height) + 18px);
}

body {
    overflow-x: clip;
}

#main-content:focus {
    outline: none;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 12px;
    z-index: 12000;
    padding: 0.7rem 1rem;
    color: var(--blue-dark);
    background: var(--orange);
    border: 2px solid #fff;
    border-radius: 6px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1800;
    color: #fff;
    background: var(--blue-dark);
    box-shadow: 0 12px 30px rgba(5, 25, 40, 0.22);
}

.site-header .navbar,
.site-header .navbar.scrolled {
    position: relative;
    top: auto;
    min-height: var(--nav-height);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.025)),
        #123d5d;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.site-header .navbar .container {
    min-height: var(--nav-height);
    gap: clamp(1rem, 2.2vw, 2rem);
}

.site-header .nav-brand {
    position: relative;
    align-self: stretch;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    padding: 0.45rem 1rem 0.55rem;
    background: #fff;
    border: 1px solid rgba(155, 170, 180, 0.72);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 0 rgba(5, 29, 46, 0.3), 0 13px 24px rgba(5, 29, 46, 0.18);
}

.site-header .nav-brand::before,
.site-header .nav-brand::after {
    position: absolute;
    top: 9px;
    width: 5px;
    height: 5px;
    content: '';
    background: #8f9ba3;
    border-radius: 50%;
    box-shadow: 0 55px 0 #8f9ba3;
}

.site-header .nav-brand::before {
    left: 8px;
}

.site-header .nav-brand::after {
    right: 8px;
}

.site-header .nav-brand a {
    display: grid;
    min-height: 56px;
    align-items: center;
}

.site-header .nav-brand .logo {
    width: 188px;
    height: auto;
}

.site-header .nav-menu {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 0.18rem;
    margin: 0;
    list-style: none;
}

.site-header .nav-menu li {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.site-header .nav-menu a {
    text-decoration: none;
}

.site-header .nav-menu a::after {
    display: none;
}

.site-header .nav-link {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0.5rem 0.64rem;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-header .nav-link::after {
    position: absolute;
    right: 0.62rem;
    bottom: 3px;
    left: 0.62rem;
    display: block;
    height: 3px;
    content: '';
    background: var(--orange);
    border-radius: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.22s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus-visible,
.site-header .nav-link.is-current {
    color: #fff;
    background: rgba(255, 255, 255, 0.075);
}

.site-header .nav-link:hover::after,
.site-header .nav-link:focus-visible::after,
.site-header .nav-link.is-current::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link-index {
    display: none;
}

.nav-phone-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.48rem;
    margin-left: 0.35rem;
    padding: 0.45rem 0.78rem 0.45rem 1rem;
    color: rgba(255, 255, 255, 0.94) !important;
    border-left: 1px solid rgba(201, 210, 216, 0.42);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    white-space: nowrap;
}

.nav-phone-link i {
    color: var(--orange);
    transition: transform 0.2s ease;
}

.nav-phone-link:hover i,
.nav-phone-link:focus-visible i {
    transform: rotate(-12deg);
}

.nav-booking-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.25rem;
    padding: 0.65rem 0.95rem;
    color: var(--blue-dark) !important;
    background: var(--orange);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px 15px 6px 6px;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.19);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-booking-button:hover,
.nav-booking-button:focus-visible {
    background: var(--yellow);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(3px);
}

.site-header .hamburger {
    display: none;
}

.service-rail {
    position: relative;
    min-height: var(--service-rail-height);
    background:
        repeating-linear-gradient(90deg, transparent 0 92px, rgba(255, 255, 255, 0.018) 93px 94px),
        #092c47;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid var(--orange);
}

.service-rail .container {
    display: flex;
    min-height: calc(var(--service-rail-height) - 3px);
    align-items: stretch;
}

.service-rail-label {
    display: inline-flex;
    min-width: 222px;
    align-items: center;
    gap: 0.55rem;
    padding-right: 1.25rem;
    color: var(--orange);
    border-right: 1px solid rgba(201, 210, 216, 0.3);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    white-space: nowrap;
}

.service-rail-links {
    display: flex;
    min-width: 0;
    flex: 1;
    align-items: stretch;
    justify-content: stretch;
}

.service-rail-links a {
    position: relative;
    display: inline-flex;
    min-height: 43px;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    padding: 0.35rem clamp(0.72rem, 1.45vw, 1.2rem);
    color: rgba(255, 255, 255, 0.78);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

.service-rail-links a:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.service-rail-links a::after {
    position: absolute;
    right: 14px;
    bottom: -3px;
    left: 14px;
    height: 3px;
    content: '';
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.22s ease;
}

.service-rail-links a:hover,
.service-rail-links a:focus-visible,
.service-rail-links a.is-current {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.service-rail-links a:hover::after,
.service-rail-links a:focus-visible::after,
.service-rail-links a.is-current::after {
    transform: scaleX(1);
}

.mobile-action-bar {
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (max-width: 1180px) and (min-width: 901px) {
    .site-header .navbar .container {
        gap: 0.8rem;
    }

    .site-header .nav-brand {
        padding-inline: 0.8rem;
    }

    .site-header .nav-brand .logo,
    .service-rail-label {
        width: 174px;
    }

    .service-rail-label {
        width: auto;
        min-width: 202px;
    }

    .site-header .nav-link {
        padding-inline: 0.44rem;
        font-size: 0.78rem;
    }

    .nav-phone-link {
        padding-inline: 0.72rem;
        font-size: 0.8rem;
    }

    .nav-booking-button {
        padding-inline: 0.72rem;
        font-size: 0.78rem;
    }
}

@media (max-width: 1040px) and (min-width: 901px) {
    .site-header .nav-link {
        padding-inline: 0.32rem;
        font-size: 0.75rem;
    }

    .site-header .nav-phone-link {
        width: 44px;
        min-width: 44px;
        justify-content: center;
        margin-left: 0.1rem;
        padding-inline: 0;
    }

    .site-header .nav-phone-link span {
        display: none;
    }

    .site-header .nav-booking-button {
        padding-inline: 0.62rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 900px) {
    :root {
        --nav-height: 76px;
        --service-rail-height: 0px;
    }

    html {
        scroll-padding-top: calc(var(--nav-height) + 14px);
    }

    body {
        padding-top: var(--nav-height);
    }

    .site-header {
        position: fixed;
        inset: 0 0 auto;
        width: 100%;
    }

    html.nav-open,
    html.nav-open body {
        overflow: hidden !important;
        overscroll-behavior: none;
    }

    .site-header .navbar,
    .site-header .navbar.scrolled {
        min-height: var(--nav-height);
    }

    .site-header .navbar .container {
        width: 100%;
        min-height: var(--nav-height);
        padding: 0 16px;
    }

    .site-header .nav-brand {
        height: var(--nav-height);
        padding: 0.4rem 0.75rem 0.5rem;
        border-radius: 0 0 7px 7px;
    }

    .site-header .nav-brand::before,
    .site-header .nav-brand::after {
        top: 7px;
        box-shadow: 0 51px 0 #8f9ba3;
    }

    .site-header .nav-brand .logo {
        width: 166px;
    }

    .site-header .hamburger {
        display: inline-flex;
        width: auto;
        height: 46px;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 0.65rem;
        padding: 0 0.9rem;
        color: var(--blue-dark);
        background: var(--orange);
        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 6px 14px 6px 6px;
        box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.83rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .site-header .hamburger > span,
    .site-header .hamburger.active > span:nth-child(1),
    .site-header .hamburger.active > span:nth-child(2),
    .site-header .hamburger.active > span:nth-child(3) {
        width: auto;
        height: auto;
        opacity: 1;
        background: none;
        border-radius: 0;
        transform: none;
        transition: none;
    }

    .site-header .hamburger .hamburger-bars {
        display: grid;
        width: 22px;
        gap: 6px;
    }

    .site-header .hamburger .hamburger-bars span {
        display: block;
        width: 22px;
        height: 2px;
        background: currentColor;
        border-radius: 0;
        transform-origin: center;
        transition: transform 0.22s ease;
    }

    .site-header .hamburger.active .hamburger-bars span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .site-header .hamburger.active .hamburger-bars span:last-child {
        opacity: 1;
        transform: translateY(-4px) rotate(-45deg);
    }

    .site-header .nav-menu {
        position: fixed;
        inset: var(--nav-height) 0 0;
        display: flex;
        max-height: none;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 1.2rem 20px 2rem;
        overflow-y: auto;
        overscroll-behavior: contain;
        color: #fff;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.025)),
            repeating-linear-gradient(180deg, #123b59 0, #123b59 42px, #0a2e49 43px, #1a4666 45px, #0c314d 48px);
        border: 0;
        box-shadow: inset 0 18px 34px rgba(0, 0, 0, 0.16);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-14px);
        transition: opacity 0.24s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.3s;
    }

    .home-page .site-header .nav-menu {
        bottom: calc(var(--mobile-action-height) + env(safe-area-inset-bottom, 0px));
    }

    .site-header .nav-menu::before {
        display: block;
        padding: 0.2rem 0.6rem 0.8rem;
        color: var(--orange);
        content: 'Main menu';
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.76rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .site-header .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s;
    }

    .site-header .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.25s ease;
    }

    .site-header .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .site-header .nav-menu.active li:nth-child(1) { transition-delay: 0.04s; }
    .site-header .nav-menu.active li:nth-child(2) { transition-delay: 0.07s; }
    .site-header .nav-menu.active li:nth-child(3) { transition-delay: 0.1s; }
    .site-header .nav-menu.active li:nth-child(4) { transition-delay: 0.13s; }
    .site-header .nav-menu.active li:nth-child(5) { transition-delay: 0.16s; }
    .site-header .nav-menu.active li:nth-child(6) { transition-delay: 0.19s; }
    .site-header .nav-menu.active li:nth-child(7) { transition-delay: 0.22s; }
    .site-header .nav-menu.active li:nth-child(8) { transition-delay: 0.25s; }

    .site-header .nav-link {
        display: grid;
        width: 100%;
        min-height: 58px;
        grid-template-columns: 42px 1fr;
        align-items: center;
        justify-content: start;
        padding: 0 0.65rem;
        color: #fff;
        background: rgba(4, 26, 42, 0.18);
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 0;
        font-size: 1.07rem;
        letter-spacing: 0.06em;
        text-align: left;
    }

    .site-header .nav-link::after {
        top: 0;
        right: auto;
        bottom: 0;
        left: 0;
        width: 4px;
        height: auto;
        background: var(--orange);
        transform: scaleY(0);
        transform-origin: bottom;
    }

    .site-header .nav-link:hover::after,
    .site-header .nav-link:focus-visible::after,
    .site-header .nav-link.is-current::after {
        transform: scaleY(1);
        transform-origin: top;
    }

    .nav-link-index {
        display: inline-block;
        color: var(--orange);
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }

    .site-header .nav-phone-item,
    .site-header .nav-booking-item {
        margin-top: 0.7rem;
    }

    .site-header .nav-phone-link,
    .site-header .nav-booking-button {
        width: 100%;
        min-height: 52px;
        justify-content: center;
        margin: 0;
        border-left: 0;
        border-radius: 6px 14px 6px 6px;
        font-size: 0.95rem;
    }

    .site-header .nav-phone-link {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.24);
    }

    .home-page .site-header .nav-phone-item,
    .home-page .site-header .nav-booking-item {
        display: none;
    }

    .service-rail {
        display: none;
    }

    .mobile-action-bar {
        height: calc(var(--mobile-action-height) + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 430px) {
    .site-header .navbar .container {
        padding-inline: 12px;
    }

    .site-header .nav-brand {
        padding-inline: 0.62rem;
    }

    .site-header .nav-brand .logo {
        width: 154px;
    }

    .site-header .hamburger {
        padding-inline: 0.72rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .skip-link,
    .site-header .nav-link,
    .site-header .nav-link::after,
    .nav-booking-button,
    .site-header .hamburger .hamburger-bars span,
    .site-header .nav-menu,
    .site-header .nav-menu li,
    .service-rail-links a,
    .service-rail-links a::after {
        transition: none !important;
    }
}

/* Final Payment Assist cascade after the legacy page styles. */
.payments-assist-section {
    padding-top: 130px;
    padding-bottom: 105px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(31, 94, 140, 0.07) 0 1px, transparent 1px 80px),
        linear-gradient(180deg, #eaf0f4 0%, #f7f9fa 72%, #fff 100%);
    background-size: 80px 80px, auto;
}

@media (max-width: 980px) {
    .payments-assist-section {
        padding-top: 110px;
    }
}

@media (max-width: 680px) {
    .payments-assist-section {
        padding-top: 92px;
        padding-bottom: 72px;
    }
}

/* About — real workshop story */
.about.about-workshop {
    position: relative;
    padding: 120px 0 105px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(11, 45, 73, 0.045) 0 1px, transparent 1px 72px),
        #fff;
    background-size: 72px 72px, auto;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(3.5rem, 7vw, 6.5rem);
    align-items: center;
}

.about-story-visual {
    position: relative;
    min-width: 0;
    min-height: 580px;
}

.about-story-photo {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: var(--blue-soft);
    box-shadow: 0 24px 54px rgba(11, 45, 73, 0.17);
}

.about-story-photo::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, transparent 62%, rgba(6, 31, 49, 0.76) 100%);
    pointer-events: none;
}

.about-story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.about-story-photo:hover img {
    filter: saturate(1.06);
    transform: scale(1.035);
}

.about-story-photo figcaption {
    position: absolute;
    right: 1.15rem;
    bottom: 1rem;
    left: 1.15rem;
    z-index: 2;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 750;
}

.about-story-photo figcaption i {
    margin-right: 0.35rem;
    color: var(--orange);
}

.about-story-photo-exterior {
    top: 0;
    left: 0;
    width: 82%;
    aspect-ratio: 4 / 3;
    border-radius: 14px 66px 14px 66px;
}

.about-story-photo-exterior img {
    object-position: 45% center;
}

.about-story-photo-interior {
    right: 0;
    bottom: 18px;
    z-index: 2;
    width: 66%;
    aspect-ratio: 4 / 3;
    border: 10px solid #fff;
    border-radius: 54px 14px 54px 14px;
}

.about-story-photo-interior img {
    object-position: center;
}

.about-since-stamp {
    position: absolute;
    top: 300px;
    left: 1.2rem;
    z-index: 4;
    display: grid;
    min-width: 150px;
    padding: 0.85rem 1.05rem;
    color: var(--blue-dark);
    background: var(--orange);
    border: 4px solid #fff;
    border-radius: 7px 22px 7px 7px;
    box-shadow: 0 15px 32px rgba(11, 45, 73, 0.2);
    transform: rotate(-2deg);
}

.about-since-stamp span {
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-since-stamp strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    line-height: 1;
}

.about-story-copy {
    min-width: 0;
}

.about-story-copy .section-eyebrow {
    justify-content: flex-start;
    margin-bottom: 0.9rem;
    color: var(--orange-dark);
}

.about-story-copy h2 {
    color: var(--blue-dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3.7rem, 5.7vw, 5.8rem);
    line-height: 0.9;
    letter-spacing: -0.035em;
}

.about-story-copy h2 span {
    color: var(--orange-dark);
}

.about-story-lede {
    max-width: 650px;
    margin-top: 1.6rem;
    color: var(--blue-dark);
    font-size: 1.2rem;
    font-weight: 650;
    line-height: 1.55;
}

.about-story-detail {
    max-width: 650px;
    margin-top: 1rem;
    color: var(--muted);
    line-height: 1.6;
}

.about-story-promise {
    display: grid;
    max-width: 650px;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    margin-top: 1.45rem;
    padding: 1.1rem 1.2rem;
    color: var(--blue-dark);
    background: var(--yellow-soft);
    border: 1px solid rgba(31, 94, 140, 0.16);
    border-left: 5px solid var(--orange);
    border-radius: 8px 22px 8px 8px;
}

.about-story-promise > i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--blue-dark);
    background: var(--orange);
    border-radius: 8px 16px 8px 8px;
}

.about-story-promise p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.45;
}

.about-story-promise strong {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--blue-dark);
}

.about-story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.7rem;
}

.about-story-actions .btn {
    min-height: 52px;
}

.about-workflow {
    position: relative;
    margin-top: 4.5rem;
    padding: 2.2rem 2.4rem 2.45rem;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(31, 94, 140, 0.46), transparent 45%),
        var(--blue-dark);
    border-top: 6px solid var(--orange);
    border-radius: 14px 52px 14px 52px;
    box-shadow: 0 25px 52px rgba(11, 45, 73, 0.2);
}

.about-workflow::after {
    position: absolute;
    right: -35px;
    bottom: -42px;
    width: 180px;
    height: 180px;
    content: '';
    border: 28px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.about-workflow-intro {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.about-workflow-intro .section-eyebrow {
    justify-content: flex-start;
    margin-bottom: 0.35rem;
    color: var(--orange);
}

.about-workflow-intro h3 {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3.6rem);
    line-height: 0.95;
}

.about-workflow-promise {
    flex: 0 0 auto;
    padding: 0.7rem 0.9rem;
    color: var(--blue-dark);
    background: var(--orange);
    border-radius: 6px 16px 6px 6px;
    font-size: 0.78rem;
    font-weight: 850;
}

.about-workflow-promise i {
    margin-right: 0.35rem;
}

.about-workflow-steps-wrap {
    position: relative;
    z-index: 2;
    margin-top: 1.8rem;
}

.about-workflow-line {
    position: absolute;
    top: 21px;
    right: 10%;
    left: 10%;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--orange) 0 10px, transparent 10px 18px);
    transform-origin: left center;
}

.about-workflow-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    list-style: none;
}

.about-workflow-steps li {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    text-align: center;
}

.about-workflow-number {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--blue-dark);
    background: var(--orange);
    border: 5px solid #174f78;
    border-radius: 50%;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.about-workflow-steps strong {
    display: block;
    margin-top: 0.7rem;
    color: #fff;
    font-size: 0.96rem;
}

.about-workflow-steps small {
    display: block;
    max-width: 190px;
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.77rem;
    line-height: 1.35;
}

@media (max-width: 980px) {
    .about.about-workshop {
        padding-top: 105px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-story-visual {
        width: min(100%, 720px);
        min-height: 640px;
        margin-inline: auto;
    }

    .about-story-copy {
        width: min(100%, 720px);
        margin-inline: auto;
    }

    .about-workflow-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

}

@media (max-width: 680px) {
    .about.about-workshop {
        padding: 82px 0 72px;
    }

    .about-workshop .container {
        width: min(100% - 28px, 1180px);
    }

    .about-story-grid {
        gap: 2.35rem;
    }

    .about-story-visual {
        min-height: 410px;
    }

    .about-story-photo-exterior {
        width: 91%;
        border-radius: 10px 38px 10px 38px;
    }

    .about-story-photo-interior {
        bottom: 0;
        width: 64%;
        border-width: 7px;
        border-radius: 34px 10px 34px 10px;
    }

    .about-story-photo figcaption {
        right: 0.8rem;
        bottom: 0.7rem;
        left: 0.8rem;
        font-size: 0.7rem;
    }

    .about-since-stamp {
        top: 210px;
        left: 0.7rem;
        min-width: 126px;
        padding: 0.65rem 0.8rem;
    }

    .about-since-stamp strong {
        font-size: 1.55rem;
    }

    .about-story-copy h2 {
        font-size: clamp(3.15rem, 14.5vw, 4.2rem);
    }

    .about-story-lede {
        margin-top: 1.2rem;
        font-size: 1.08rem;
    }

    .about-story-promise {
        grid-template-columns: 40px minmax(0, 1fr);
        padding: 0.95rem;
    }

    .about-story-promise > i {
        width: 40px;
        height: 40px;
    }

    .about-story-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .about-story-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-workflow {
        margin-top: 3rem;
        padding: 1.35rem 1.1rem 1.5rem;
        border-radius: 10px 34px 10px 34px;
    }

    .about-workflow-intro h3 {
        font-size: 2.35rem;
    }

    .about-workflow-promise {
        white-space: normal;
    }

    .about-workflow-steps-wrap {
        margin-top: 1.25rem;
    }

    .about-workflow-line {
        display: none;
    }

    .about-workflow-steps {
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
    }

    .about-workflow-steps li {
        min-height: 124px;
        justify-items: start;
        align-content: start;
        padding: 0.85rem;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px 18px 8px 8px;
        text-align: left;
    }

    .about-workflow-number {
        width: 34px;
        height: 34px;
        border-width: 4px;
    }

    .about-workflow-steps strong {
        margin-top: 0.45rem;
        font-size: 0.87rem;
        line-height: 1.2;
    }

    .about-workflow-steps small {
        font-size: 0.7rem;
    }

}

@media (prefers-reduced-motion: reduce) {
    .about-story-photo img {
        transition: none;
    }

    .about-story-photo:hover img {
        transform: none;
    }
}

/* Booking — workshop job card */
.booking.booking-request {
    width: auto;
    margin: 24px;
    padding: 110px 0;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(31, 94, 140, 0.58), transparent 48%),
        linear-gradient(180deg, #0d3554, var(--blue-dark));
    border-radius: 18px 64px 18px 64px;
    text-align: left;
}

.booking-request::before {
    top: auto;
    right: -88px;
    bottom: -98px;
    left: auto;
    width: 330px;
    height: 330px;
    border: 48px solid rgba(255, 255, 255, 0.04);
}

.booking-request .booking-overlay {
    position: absolute;
    inset: 0;
    display: block;
    background:
        repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, 0.025) 120px),
        repeating-linear-gradient(0deg, transparent 0 89px, rgba(255, 255, 255, 0.02) 90px);
    pointer-events: none;
}

.booking-request .container {
    position: relative;
    z-index: 2;
    width: min(1220px, calc(100% - 48px));
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 6vw, 5.5rem);
    align-items: center;
}

.booking-guide {
    min-width: 0;
}

.booking-guide .section-eyebrow {
    justify-content: flex-start;
    margin-bottom: 0.9rem;
    color: var(--orange);
}

.booking-guide h2 {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(4rem, 6vw, 6.4rem);
    line-height: 0.88;
    letter-spacing: -0.035em;
}

.booking-guide h2 span {
    color: var(--orange);
}

.booking-guide .booking-intro {
    max-width: 520px;
    margin: 1.45rem 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
    line-height: 1.55;
}

.booking-process {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.7rem;
    list-style: none;
}

.booking-process li {
    display: grid;
    min-height: 68px;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    padding: 0.8rem 0.9rem;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px 18px 8px 8px;
}

.booking-process > li > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--blue-dark);
    background: var(--orange);
    border-radius: 7px 14px 7px 7px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
}

.booking-process strong,
.booking-process small {
    display: block;
}

.booking-process strong {
    color: #fff;
    font-size: 0.92rem;
}

.booking-process small {
    margin-top: 0.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.76rem;
    line-height: 1.3;
}

.booking-guide-callout {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    margin-top: 1rem;
    padding: 1rem;
    color: var(--blue-dark);
    background: var(--orange);
    border-radius: 8px 22px 8px 8px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.booking-guide-callout > i {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #fff;
    background: var(--blue-dark);
    border-radius: 8px 16px 8px 8px;
}

.booking-guide-callout span,
.booking-guide-callout a,
.booking-guide-callout small {
    display: block;
}

.booking-guide-callout span {
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.booking-guide-callout a {
    width: fit-content;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.booking-guide-callout small {
    margin-top: 0.2rem;
    color: rgba(11, 45, 73, 0.72);
    font-size: 0.74rem;
}

.booking-guide-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 750;
}

.booking-guide-trust i {
    margin-right: 0.28rem;
    color: var(--orange);
}

.booking-request .booking-job-card {
    position: relative;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: var(--blue-dark);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-top: 7px solid var(--orange);
    border-radius: 14px 48px 14px 14px;
    box-shadow: 0 34px 76px rgba(0, 0, 0, 0.25);
    text-align: left;
}

.booking-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.35rem 1.6rem 1.25rem;
    background: linear-gradient(90deg, #f4f7f9, #fff);
    border-bottom: 1px solid rgba(11, 45, 73, 0.1);
}

.booking-card-kicker {
    color: var(--orange-dark);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.booking-card-head h3 {
    margin-top: 0.15rem;
    color: var(--blue-dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.booking-card-status {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 0.45rem;
    padding: 0.55rem 0.7rem;
    color: var(--blue-dark);
    background: var(--yellow-soft);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.booking-card-status i {
    width: 8px;
    height: 8px;
    background: #3b9b68;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(59, 155, 104, 0.13);
}

.booking-form-step {
    min-width: 0;
    margin-top: 0.6rem;
    padding: 1.15rem 1.6rem 1.25rem;
    border: 0;
    border-bottom: 1px solid rgba(11, 45, 73, 0.1);
}

.booking-form-step legend {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0;
    color: var(--blue-dark);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-form-step legend span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 6px 10px 6px 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
}

.booking-form-grid {
    display: grid;
    gap: 0.8rem;
    margin-top: 0.85rem;
}

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

.booking-form-grid-vehicle {
    grid-template-columns: minmax(135px, 0.78fr) minmax(190px, 1.18fr) minmax(175px, 1fr);
}

.booking-request .form-group {
    min-width: 0;
    margin: 0;
}

.booking-request .form-group label {
    margin-bottom: 0.35rem;
    color: var(--blue-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.booking-request .optional {
    margin-left: 0.3rem;
    padding: 0.15rem 0.38rem;
    color: var(--muted);
    background: var(--steel-soft);
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 750;
    text-transform: uppercase;
}

.booking-request .form-group input,
.booking-request .form-group select,
.booking-request .form-group textarea {
    min-height: 49px;
    padding: 0.72rem 0.8rem;
    color: var(--blue-dark);
    background: #f4f7f9;
    border: 1px solid rgba(11, 45, 73, 0.16);
    border-radius: 8px 14px 8px 8px;
}

.booking-request .form-group input::placeholder,
.booking-request .form-group textarea::placeholder {
    color: #7a8790;
}

.booking-request .form-group input:focus,
.booking-request .form-group select:focus,
.booking-request .form-group textarea:focus {
    border-color: var(--orange-dark);
    box-shadow: 0 0 0 4px rgba(242, 179, 50, 0.14);
}

/* shadcn/ui Select islands */
html body[data-scroll-locked] .site-header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
}

html body[data-scroll-locked] {
    padding-top: calc(var(--nav-height) + var(--service-rail-height)) !important;
}

@media (max-width: 900px) {
    html body[data-scroll-locked] {
        padding-top: var(--nav-height) !important;
    }
}

.shadcn-select-mount,
.shadcn-select-root {
    position: relative;
    width: 100%;
    min-width: 0;
}

[data-shadcn-select][data-select-enhanced="true"] > select {
    position: absolute !important;
    width: 1px !important;
    min-width: 1px !important;
    height: 1px !important;
    min-height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

[data-slot="select-trigger"] {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font: inherit;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.quick-field [data-slot="select-trigger"] {
    height: 54px;
    padding: 0 1rem;
    color: var(--ink);
    background: #fff;
    border: 0;
    border-radius: 8px;
}

.booking-request .form-group [data-slot="select-trigger"] {
    min-height: 49px;
    padding: 0.72rem 0.8rem;
    color: var(--blue-dark);
    background: #f4f7f9;
    border: 1px solid rgba(11, 45, 73, 0.16);
    border-radius: 8px 14px 8px 8px;
}

[data-slot="select-trigger"][data-placeholder] {
    color: #7a8790;
}

[data-slot="select-trigger"]:focus-visible,
[data-slot="select-trigger"][data-state="open"] {
    border-color: var(--orange-dark);
    box-shadow: 0 0 0 4px rgba(242, 179, 50, 0.18);
}

[data-slot="select-trigger"][aria-invalid="true"] {
    border-color: #b42318;
    box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.14);
}

[data-slot="select-trigger"]:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

[data-slot="select-trigger-icon"] {
    flex: 0 0 auto;
    width: 1.05rem;
    height: 1.05rem;
    color: currentColor;
    opacity: 0.62;
    pointer-events: none;
    transition: transform 160ms ease;
}

[data-slot="select-trigger"][data-state="open"] [data-slot="select-trigger-icon"] {
    transform: rotate(180deg);
}

[data-slot="select-content"] {
    z-index: 2100;
    width: var(--radix-select-trigger-width);
    min-width: max(220px, var(--radix-select-trigger-width));
    max-height: min(360px, var(--radix-select-content-available-height));
    overflow: hidden;
    color: var(--blue-dark);
    background: #fff;
    border: 1px solid rgba(11, 45, 73, 0.17);
    border-radius: 10px 18px 10px 10px;
    box-shadow: 0 22px 52px rgba(3, 24, 39, 0.28), 0 4px 12px rgba(3, 24, 39, 0.12);
    transform-origin: var(--radix-select-content-transform-origin);
}

[data-slot="select-content"][data-state="open"] {
    animation: shadcn-select-in 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-slot="select-content"][data-state="closed"] {
    animation: shadcn-select-out 110ms ease-in;
}

[data-slot="select-viewport"] {
    max-height: inherit;
    padding: 0.38rem;
}

[data-slot="select-item"] {
    position: relative;
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 0.62rem 2.45rem 0.62rem 0.82rem;
    color: var(--blue-dark);
    border-radius: 6px 12px 6px 6px;
    font-size: 0.88rem;
    font-weight: 720;
    line-height: 1.25;
    cursor: pointer;
    outline: none;
    user-select: none;
}

[data-slot="select-item"][data-highlighted] {
    color: var(--blue-dark);
    background: #e7f1f8;
}

[data-slot="select-item"][data-state="checked"] {
    color: var(--blue-dark);
    background: var(--blue-soft);
}

[data-slot="select-item"][data-disabled] {
    cursor: not-allowed;
    opacity: 0.45;
}

[data-slot="select-item-indicator"] {
    position: absolute;
    right: 0.8rem;
    display: grid;
    width: 1rem;
    height: 1rem;
    place-items: center;
    color: #12835e;
}

[data-slot="select-item-indicator"] svg,
[data-slot="select-scroll-up-button"] svg,
[data-slot="select-scroll-down-button"] svg {
    width: 1rem;
    height: 1rem;
}

[data-slot="select-scroll-up-button"],
[data-slot="select-scroll-down-button"] {
    display: flex;
    height: 28px;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: #fff;
    cursor: default;
}

[data-slot="select-error"] {
    margin: 0.38rem 0 0;
    color: #ffd2ca;
    font-size: 0.72rem;
    font-weight: 750;
}

.booking-request [data-slot="select-error"] {
    color: #b42318;
}

@keyframes shadcn-select-in {
    from { opacity: 0; transform: translateY(-4px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes shadcn-select-out {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(-2px) scale(0.985); }
}

@media (prefers-reduced-motion: reduce) {
    [data-slot="select-content"] {
        animation: none !important;
    }
}

.booking-request #registration {
    color: #111;
    background: #f4d447;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.booking-request .form-group small {
    margin-top: 0.3rem;
    font-size: 0.7rem;
}

.booking-request .booking-notice {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.65rem;
    align-items: center;
    margin: 0.85rem 0 0;
    padding: 0.75rem 0.85rem;
    color: var(--blue-dark);
    background: var(--blue-soft);
    border: 1px solid rgba(11, 45, 73, 0.08);
    border-radius: 7px 16px 7px 7px;
}

.booking-request .booking-notice > i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--blue-dark);
    background: var(--orange);
    border-radius: 6px 11px 6px 6px;
}

.booking-request .booking-notice p {
    font-size: 0.76rem;
    line-height: 1.4;
}

.booking-form-step-message {
    padding-bottom: 1rem;
}

.booking-form-step-message .form-group {
    margin-top: 0.8rem;
}

.booking-request .form-group textarea {
    min-height: 88px;
    resize: vertical;
}

.booking-submit-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.6rem 1.25rem;
    background: #f4f7f9;
}

.booking-request .privacy-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.4;
}

.booking-request .privacy-note > i {
    margin-right: 0.3rem;
    color: var(--blue);
}

.booking-submit-button {
    min-width: 245px;
    min-height: 50px;
    justify-content: center;
    white-space: nowrap;
}

.booking-submit-button i {
    margin-left: 0.35rem;
    transition: transform 0.2s ease;
}

.booking-submit-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 1080px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .booking-guide {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .booking-guide h2 {
        font-size: clamp(4.1rem, 10vw, 6rem);
    }

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

    .booking-process li {
        min-height: 132px;
        grid-template-columns: 1fr;
        align-content: start;
    }

    .booking-request .booking-job-card {
        width: min(100%, 840px);
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    .booking-process {
        grid-template-columns: 1fr;
    }

    .booking-process li {
        min-height: 0;
        grid-template-columns: 44px minmax(0, 1fr);
        align-content: center;
    }

    .booking-form-grid-details,
    .booking-form-grid-vehicle {
        grid-template-columns: 1fr 1fr;
    }

    .booking-form-grid-details .form-group:last-child,
    .booking-form-grid-vehicle .form-group:nth-child(2) {
        grid-column: 1 / -1;
    }

    .booking-submit-row {
        grid-template-columns: 1fr;
    }

    .booking-submit-button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .booking.booking-request {
        margin: 10px 0;
        padding: 78px 0 84px;
        border-radius: 38px 0 38px 0;
    }

    .booking-request .container {
        width: min(100% - 28px, 1220px);
    }

    .booking-layout {
        gap: 2.4rem;
    }

    .booking-guide h2 {
        font-size: clamp(3.55rem, 16vw, 4.5rem);
    }

    .booking-guide .booking-intro {
        margin-top: 1.1rem;
        font-size: 0.98rem;
    }

    .booking-process {
        margin-top: 1.3rem;
    }

    .booking-guide-callout {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .booking-guide-callout > i {
        width: 42px;
        height: 42px;
    }

    .booking-request .booking-job-card {
        border-radius: 10px 34px 10px 10px;
    }

    .booking-card-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.15rem;
    }

    .booking-card-head h3 {
        font-size: 1.8rem;
    }

    .booking-card-status {
        white-space: normal;
    }

    .booking-form-step {
        padding: 1rem 1.05rem 1.1rem;
    }

    .booking-form-grid-details,
    .booking-form-grid-vehicle {
        grid-template-columns: 1fr;
    }

    .booking-form-grid-details .form-group:last-child,
    .booking-form-grid-vehicle .form-group:nth-child(2) {
        grid-column: auto;
    }

    .booking-request .booking-notice {
        align-items: start;
    }

    .booking-submit-row {
        padding: 1rem 1.05rem 1.15rem;
    }

    .booking-submit-button {
        min-width: 0;
        white-space: normal;
    }
}

@media (prefers-reduced-motion: reduce) {
    .booking-submit-button i {
        transition: none;
    }

    .booking-submit-button:hover i {
        transform: none;
    }
}

/* Contact — workshop destination board */
.contact.contact-workshop {
    position: relative;
    padding: 110px 0 100px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(11, 45, 73, 0.045) 0 1px, transparent 1px 76px),
        #f4f7f9;
    background-size: 76px 76px, auto;
}

.contact-workshop .container {
    width: min(1220px, calc(100% - 48px));
}

.contact-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3.2rem;
}

.contact-heading-copy {
    max-width: 720px;
}

.contact-heading-copy .section-eyebrow {
    justify-content: flex-start;
    margin-bottom: 0.8rem;
    color: var(--orange-dark);
}

.contact-heading-copy h2 {
    color: var(--blue-dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(4rem, 6.1vw, 6.4rem);
    line-height: 0.88;
    letter-spacing: -0.035em;
}

.contact-heading-copy h2 span {
    color: var(--orange-dark);
}

.contact-heading-copy > p:last-child {
    max-width: 620px;
    margin-top: 1.25rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.contact-heading-copy > p:last-child strong {
    color: var(--blue-dark);
}

.contact-heading-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.contact-heading-actions .btn {
    min-height: 52px;
}

.contact-workshop-grid {
    display: grid;
    grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
    gap: 1.25rem;
    align-items: stretch;
}

.contact-details-panel {
    position: relative;
    padding: 1.35rem;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(130deg, rgba(31, 94, 140, 0.52), transparent 52%),
        var(--blue-dark);
    border-radius: 14px 48px 14px 48px;
    box-shadow: 0 24px 50px rgba(11, 45, 73, 0.2);
}

.contact-details-panel::after {
    position: absolute;
    right: -60px;
    bottom: -70px;
    width: 210px;
    height: 210px;
    content: '';
    border: 32px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.contact-live-status {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.05rem;
    color: var(--blue-dark);
    background: var(--orange);
    border-radius: 8px 20px 8px 8px;
}

.contact-live-status span,
.contact-live-status strong {
    display: block;
}

.contact-live-status > div > span {
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-live-status strong {
    margin-top: 0.15rem;
    font-size: 1rem;
}

.contact-workshop .contact-live-status .status-dot {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    background: #89949b;
    border: 4px solid rgba(255, 255, 255, 0.76);
    box-shadow: 0 0 0 5px rgba(11, 45, 73, 0.11);
}

.contact-workshop .contact-live-status .status-dot.open {
    background: #25945e;
}

.contact-workshop .contact-live-status .status-dot.closed {
    background: #c94848;
}

.contact-primary-details {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.15rem;
    margin-top: 0.85rem;
}

.contact-detail-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
    padding: 0.9rem 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail-item > i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--blue-dark);
    background: var(--orange);
    border-radius: 7px 14px 7px 7px;
}

.contact-detail-item span,
.contact-detail-item strong,
.contact-detail-item small {
    display: block;
    min-width: 0;
}

.contact-detail-item span {
    color: var(--orange);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-detail-item strong {
    margin-top: 0.05rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.contact-detail-item small {
    margin-top: 0.12rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
}

.contact-detail-item a {
    text-decoration-color: rgba(255, 255, 255, 0.45);
}

.contact-hours-card {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    padding: 1rem;
    color: var(--blue-dark);
    background: #fff;
    border-radius: 8px 22px 8px 8px;
}

.contact-hours-heading {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.contact-hours-heading i {
    color: var(--orange-dark);
}

.contact-hours-heading h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
}

.contact-hours-card dl {
    margin-top: 0.65rem;
}

.contact-hours-card dl > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(11, 45, 73, 0.09);
    font-size: 0.8rem;
}

.contact-hours-card dt {
    color: var(--muted);
}

.contact-hours-card dd {
    color: var(--blue-dark);
    font-weight: 800;
}

.contact-hours-card > p {
    margin-top: 0.65rem;
    color: var(--muted);
    font-size: 0.72rem;
}

.contact-hours-card > p i {
    margin-right: 0.25rem;
    color: var(--orange-dark);
}

.contact-map-card {
    position: relative;
    min-width: 0;
    min-height: 570px;
    overflow: hidden;
    background: var(--blue-soft);
    border: 8px solid #fff;
    border-radius: 48px 14px 48px 14px;
    box-shadow: 0 24px 50px rgba(11, 45, 73, 0.14);
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 570px;
    filter: saturate(0.78) contrast(1.03);
    pointer-events: none;
}

.contact-map-card.map-is-active iframe {
    pointer-events: auto;
}

.map-interaction-control {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 3;
    display: grid;
    gap: 0.38rem;
    justify-items: end;
}

.map-interaction-toggle {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 0.52rem;
    padding: 0.68rem 0.9rem;
    color: #fff;
    background: var(--blue-dark);
    border: 2px solid rgba(255, 255, 255, 0.86);
    border-radius: 7px 16px 7px 7px;
    box-shadow: 0 12px 26px rgba(6, 29, 46, 0.28);
    font-size: 0.76rem;
    font-weight: 850;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.map-interaction-toggle:hover,
.map-interaction-toggle:focus-visible {
    background: var(--blue);
    transform: translateY(-2px);
}

.map-interaction-status {
    padding: 0.28rem 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(6, 29, 46, 0.78);
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 760;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
}

.contact-map-card.map-is-active .map-interaction-toggle {
    color: var(--blue-dark);
    background: var(--orange);
    border-color: #fff;
}

.contact-map-card::after {
    position: absolute;
    inset: auto 0 0;
    height: 190px;
    content: '';
    background: linear-gradient(180deg, transparent, rgba(6, 29, 46, 0.48));
    pointer-events: none;
}

.contact-map-label {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.1rem;
    color: var(--blue-dark);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 8px 22px 8px 8px;
    box-shadow: 0 16px 34px rgba(6, 29, 46, 0.22);
    backdrop-filter: blur(12px);
}

.contact-map-label span,
.contact-map-label strong,
.contact-map-label small {
    display: block;
}

.contact-map-label span {
    color: var(--orange-dark);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-map-label strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.55rem;
    line-height: 1.05;
}

.contact-map-label small {
    margin-top: 0.15rem;
    color: var(--muted);
    font-size: 0.74rem;
}

.contact-map-label > a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 0.45rem;
    padding: 0.65rem 0.85rem;
    color: var(--blue-dark);
    background: var(--orange);
    border-radius: 6px 14px 6px 6px;
    font-size: 0.78rem;
    font-weight: 850;
    text-decoration: none;
}

.contact-service-strip {
    display: flex;
    align-items: center;
    gap: 1rem 1.5rem;
    margin-top: 1rem;
    padding: 0.9rem 1.1rem;
    color: var(--blue-dark);
    background: #fff;
    border: 1px solid rgba(11, 45, 73, 0.1);
    border-radius: 12px 24px 12px 12px;
    box-shadow: 0 10px 24px rgba(11, 45, 73, 0.07);
}

.contact-service-strip > span {
    flex: 0 0 auto;
    color: var(--orange-dark);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-service-strip > span i {
    margin-right: 0.35rem;
}

.contact-service-strip ul {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
}

.contact-service-strip li {
    padding: 0.34rem 0.55rem;
    color: var(--blue-dark);
    background: var(--steel-soft);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 750;
}

@media (max-width: 980px) {
    .contact-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-heading-actions {
        justify-content: flex-start;
    }

    .contact-workshop-grid {
        grid-template-columns: 1fr;
    }

    .contact-details-panel,
    .contact-map-card {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .contact-primary-details {
        grid-template-columns: 1fr 1fr;
        column-gap: 1rem;
    }

    .contact-detail-item:last-child {
        grid-column: 1 / -1;
    }

    .contact-map-card,
    .contact-map-card iframe {
        min-height: 520px;
    }

    .contact-service-strip {
        width: min(100%, 760px);
        align-items: flex-start;
        flex-direction: column;
        margin-inline: auto;
    }
}

@media (max-width: 620px) {
    .contact.contact-workshop {
        padding: 82px 0 74px;
    }

    .contact-workshop .container {
        width: min(100% - 28px, 1220px);
    }

    .contact-heading-row {
        margin-bottom: 2.2rem;
    }

    .contact-heading-copy h2 {
        font-size: clamp(3.5rem, 15.5vw, 4.4rem);
    }

    .contact-heading-copy > p:last-child {
        font-size: 0.96rem;
    }

    .contact-heading-actions {
        width: 100%;
        flex-direction: column;
    }

    .contact-heading-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-details-panel {
        padding: 1rem;
        border-radius: 10px 34px 10px 34px;
    }

    .contact-live-status {
        padding: 0.9rem;
    }

    .contact-live-status strong {
        font-size: 0.9rem;
    }

    .contact-primary-details {
        grid-template-columns: 1fr;
    }

    .contact-detail-item:last-child {
        grid-column: auto;
    }

    .contact-detail-item {
        padding: 0.8rem 0.45rem;
    }

    .contact-hours-card dl > div {
        font-size: 0.76rem;
    }

    .contact-map-card {
        border-width: 6px;
        border-radius: 34px 10px 34px 10px;
    }

    .contact-map-card,
    .contact-map-card iframe {
        min-height: 430px;
    }

    .map-interaction-control {
        top: 0.75rem;
        right: 0.75rem;
    }

    .map-interaction-toggle {
        min-height: 44px;
        padding: 0.62rem 0.75rem;
        font-size: 0.72rem;
    }

    .contact-map-label {
        right: 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
        align-items: stretch;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.9rem;
    }

    .contact-map-label > a {
        width: 100%;
    }

    .contact-service-strip {
        padding: 0.9rem;
    }

    .contact-service-strip ul {
        gap: 0.35rem;
    }
}

/* Footer — workshop sign-off */
.footer.footer-workshop {
    position: relative;
    z-index: 2;
    margin-top: -42px;
    padding: 64px 0 22px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.72);
    background:
        linear-gradient(90deg, transparent 0 49.8%, rgba(255, 255, 255, 0.025) 49.8% 50.2%, transparent 50.2%),
        linear-gradient(180deg, rgba(31, 94, 140, 0.22), transparent 42%),
        #082942;
    border-radius: 58px 58px 0 0;
    box-shadow: 0 -18px 52px rgba(11, 45, 73, 0.13);
}

.footer-workshop::after {
    position: absolute;
    right: -80px;
    bottom: 80px;
    width: 300px;
    height: 300px;
    content: '';
    border: 46px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
    pointer-events: none;
}

.footer-workshop > .container {
    position: relative;
    z-index: 1;
    width: min(1220px, calc(100% - 48px));
}

.footer-cta-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: clamp(1.65rem, 3vw, 2.55rem) clamp(1.5rem, 4vw, 3.4rem);
    overflow: hidden;
    color: var(--blue-dark);
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.18), transparent 52%),
        var(--orange);
    border-radius: 16px 48px 16px 16px;
    box-shadow: 0 22px 48px rgba(3, 24, 39, 0.28);
}

.footer-cta-panel::after {
    position: absolute;
    top: -72px;
    right: 33%;
    width: 180px;
    height: 180px;
    content: '';
    border: 28px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.footer-cta-copy,
.footer-cta-actions {
    position: relative;
    z-index: 1;
}

.footer-cta-copy {
    max-width: 650px;
}

.footer-cta-copy > p {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.45rem;
    color: var(--blue-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-cta-copy > p i {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: var(--orange);
    background: var(--blue-dark);
    border-radius: 6px 10px 6px 6px;
}

.footer-cta-copy h2 {
    color: var(--blue-dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.85rem, 5vw, 4.8rem);
    line-height: 0.9;
    letter-spacing: -0.035em;
}

.footer-cta-copy > span {
    display: block;
    margin-top: 0.75rem;
    color: rgba(11, 45, 73, 0.74);
    font-size: 0.96rem;
    font-weight: 650;
}

.footer-cta-actions {
    display: grid;
    min-width: 260px;
    gap: 0.65rem;
}

.footer-cta-actions a {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.8rem 1.1rem;
    border-radius: 7px 16px 7px 7px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.015em;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.footer-workshop .footer-cta-book {
    color: #fff;
    background: var(--blue-dark);
    box-shadow: 0 12px 24px rgba(11, 45, 73, 0.24);
}

.footer-workshop .footer-cta-call {
    color: var(--blue-dark);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(11, 45, 73, 0.55);
}

.footer-cta-actions a:hover {
    transform: translateY(-2px);
}

.footer-workshop .footer-cta-call:hover {
    color: #fff;
    background: var(--blue-dark);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: minmax(250px, 1.05fr) minmax(340px, 1.25fr) minmax(250px, 0.9fr);
    gap: clamp(2rem, 4vw, 4.25rem);
    align-items: start;
    padding: clamp(3.1rem, 6vw, 5.2rem) 0 3.3rem;
}

.footer-brand-panel > p {
    max-width: 320px;
    margin-top: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.94rem;
}

.footer-brand-mark {
    display: inline-flex;
    width: min(245px, 100%);
    min-height: 0;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.footer-brand-mark img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-brand-panel address {
    display: flex;
    max-width: 330px;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.84rem;
    font-style: normal;
    font-weight: 720;
    line-height: 1.45;
}

.footer-brand-panel address i {
    margin-top: 0.25rem;
    color: var(--orange);
}

.footer-workshop .footer-facebook {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-facebook i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--blue-dark);
    background: var(--orange);
    border-radius: 50%;
}

.footer-workshop .footer-facebook:hover {
    color: #fff;
}

.footer-nav-group {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(1.5rem, 3vw, 3rem);
}

.footer-link-column h3,
.footer-card-label {
    color: var(--orange);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.08rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-link-column h3::after {
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 0.65rem;
    content: '';
    background: var(--orange);
    border-radius: 999px;
}

.footer-link-column ul {
    margin-top: 1rem;
    list-style: none;
}

.footer-link-column li + li {
    margin-top: 0.56rem;
}

.footer-workshop .footer-link-column a {
    position: relative;
    display: inline-block;
    padding-left: 0.85rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
    font-weight: 680;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-link-column a::before {
    position: absolute;
    top: 0.66em;
    left: 0;
    width: 4px;
    height: 4px;
    content: '';
    background: var(--orange);
    border-radius: 50%;
}

.footer-workshop .footer-link-column a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-workshop-card {
    position: relative;
    padding: 1.3rem;
    overflow: hidden;
    background: rgba(31, 94, 140, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-top: 5px solid var(--orange);
    border-radius: 9px 28px 9px 9px;
    box-shadow: 0 18px 36px rgba(3, 24, 39, 0.2);
}

.footer-card-label {
    margin-bottom: 0.8rem;
}

.footer-card-phone,
.footer-card-hours {
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
    padding: 0.9rem 0;
    color: rgba(255, 255, 255, 0.68);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
    text-decoration: none;
}

.footer-card-phone > i,
.footer-card-hours > i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--blue-dark);
    background: var(--orange);
    border-radius: 6px 13px 6px 6px;
}

.footer-card-phone span,
.footer-card-hours span,
.footer-card-phone strong,
.footer-card-hours strong {
    display: block;
}

.footer-card-phone strong,
.footer-card-hours strong {
    margin-top: 0.08rem;
    color: #fff;
    font-size: 0.96rem;
    line-height: 1.2;
}

.footer-workshop .footer-card-phone:hover strong {
    color: var(--orange);
}

.footer-card-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.footer-card-certifications span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.55rem;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 760;
}

.footer-card-certifications i {
    color: var(--orange);
}

.footer-workshop .footer-bottom {
    margin: 0;
    padding: 1.3rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-workshop .footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.footer-workshop .footer-bottom-content > p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.74rem;
}

.footer-workshop .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem 1rem;
}

.footer-workshop .legal-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    font-weight: 680;
    text-decoration: none;
}

.footer-workshop .legal-links a:hover {
    color: #fff;
}

.footer-legacy-grid .footer-content {
    gap: clamp(1.8rem, 4vw, 3.6rem);
    padding: clamp(3.1rem, 6vw, 5rem) 0 3.1rem;
}

.footer-legacy-grid .footer-logo {
    display: inline-flex;
    width: min(235px, 100%);
    min-height: 0;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.footer-legacy-grid .footer-logo-img {
    display: block;
    width: 100%;
    margin: 0;
    filter: brightness(0) invert(1);
}

.footer-legacy-grid .footer-section > h3 {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
}

.footer-legacy-grid .footer-section > h4 {
    position: relative;
    margin-bottom: 1.25rem;
    color: var(--orange);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.08rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-legacy-grid .footer-section > h4::after {
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 0.65rem;
    content: '';
    background: var(--orange);
    border-radius: 999px;
}

.footer-legacy-grid .footer-section > p {
    max-width: 310px;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

.footer-legacy-grid .footer-section li {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    font-weight: 680;
}

.footer-legacy-grid .footer-section li a {
    text-decoration: none;
}

.footer-legacy-grid .footer-section li a:hover {
    color: #fff;
}

.footer-legacy-grid .social-links a {
    width: 36px;
    height: 36px;
    color: var(--blue-dark);
    background: var(--orange);
}

.footer-legacy-grid .certification-item {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
}

.footer-legacy-grid .cert-logo {
    width: 38px;
    height: 38px;
    color: var(--blue-dark);
    background: var(--orange);
    border-radius: 6px 13px 6px 6px;
}

.footer-legacy-grid .separator {
    display: none;
}

@media (max-width: 1020px) {
    .footer-main-grid {
        grid-template-columns: minmax(230px, 0.85fr) minmax(360px, 1.15fr);
    }

    .footer-workshop-card {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 0.65fr 1fr 1fr 1.4fr;
        gap: 0 1rem;
        align-items: center;
    }

    .footer-card-label {
        margin: 0;
    }

    .footer-card-phone,
    .footer-card-hours {
        border-bottom: 0;
    }

    .footer-card-certifications {
        justify-content: flex-end;
        margin: 0;
    }
}

@media (max-width: 760px) {
    .footer.footer-workshop {
        margin-top: -24px;
        padding-top: 42px;
        border-radius: 36px 36px 0 0;
    }

    .footer-workshop > .container {
        width: min(100% - 28px, 1220px);
    }

    .footer-cta-panel {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
        border-radius: 12px 36px 12px 12px;
    }

    .footer-cta-actions {
        width: 100%;
        min-width: 0;
        grid-template-columns: 1fr 1fr;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 2.4rem;
        padding: 3rem 0 2.5rem;
    }

    .footer-brand-panel > p,
    .footer-brand-panel address {
        max-width: 520px;
    }

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

    .footer-workshop-card {
        grid-column: auto;
        display: block;
    }

    .footer-card-label {
        margin-bottom: 0.8rem;
    }

    .footer-card-phone,
    .footer-card-hours {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-card-certifications {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 520px) {
    .footer.footer-workshop.footer-mobile-actions {
        padding-bottom: 98px;
    }

    .footer-cta-panel {
        gap: 1.3rem;
        padding: 1.4rem 1.15rem;
    }

    .footer-cta-copy h2 {
        font-size: clamp(2.65rem, 13vw, 3.7rem);
    }

    .footer-cta-copy > span {
        font-size: 0.86rem;
    }

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

    .footer-cta-actions a {
        width: 100%;
    }

    .footer-main-grid {
        gap: 2.1rem;
    }

    .footer-brand-mark {
        width: min(225px, 100%);
    }

    .footer-nav-group {
        gap: 1.2rem;
    }

    .footer-link-column h3 {
        font-size: 0.94rem;
    }

    .footer-workshop .footer-link-column a {
        font-size: 0.82rem;
    }

    .footer-workshop .footer-bottom-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-workshop .legal-links {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    body:not(.home-page) {
        padding-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-cta-actions a,
    .footer-workshop .footer-link-column a {
        transition: none;
    }

    .footer-cta-actions a:hover,
    .footer-workshop .footer-link-column a:hover {
        transform: none;
    }
}
