/* ================================================================
   DYNAMIC PEOPLE — CONSOLIDATED STYLESHEET
   ================================================================ */

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --orange: #f27024;
    --orange-dark: #d45e18;
    --orange-light: #fff3ec;
    --navy: #1a1f36;
    --navy-light: #2d3250;
    --text: #1a1f36;
    --text-secondary: #5a5f7a;
    --light: #f7f8fc;
    --white: #ffffff;
    --border: #e5e7ee;
    --font-primary: 'Inter', -apple-system, sans-serif;
    --font-display: 'DM Sans', 'Inter', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(26,31,54,0.08);
    --shadow-lg: 0 12px 48px rgba(26,31,54,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2.4rem;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
}

h1 { font-size: clamp(2.8rem, 4.5vw, 4.8rem); }
h2 { font-size: clamp(2.4rem, 3vw, 3.6rem); }
h3 { font-size: clamp(1.8rem, 2vw, 2.2rem); }
h4 { font-size: 1.7rem; }
h5 { font-size: 1.5rem; font-weight: 700; }

p { color: var(--text-secondary); }

.accent-text { color: var(--orange); }
.subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.4rem 3.2rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242,112,36,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-arrow::after {
    content: '\2192';
    transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 8rem;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}
.nav__brand span { color: var(--orange); }
.nav__brand-img {
    display: block;
    height: 5.2rem;
    width: auto;
}
.nav__logo {
    width: 4.4rem;
    height: 4.4rem;
    background: var(--orange);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.nav__links a {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
}
.nav__links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }

.nav__right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text);
}
.nav__phone svg { width: 1.8rem; height: 1.8rem; color: var(--orange); }

.nav__mobile-phone { display: none; }

.nav__cta {
    padding: 1rem 2.4rem;
    font-size: 1.4rem;
}

/* ---- Nav dropdown ---- */
.nav__dropdown {
    position: static;
}
.nav__dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}
.nav__dropdown-toggle svg {
    width: 1.2rem;
    height: 1.2rem;
    transition: transform var(--transition);
}
.nav__dropdown:hover .nav__dropdown-toggle svg {
    transform: rotate(180deg);
}
.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    box-shadow: var(--shadow-lg);
    padding: 2rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 100;
    margin-top: 0.8rem;
}
.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.nav__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.8rem;
    left: 0;
    right: 0;
    height: 0.8rem;
}
.nav__dropdown-inner {
    display: flex;
    gap: 0;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2.4rem;
}
.nav__dropdown-col {
    flex: 1;
    padding: 0 2rem;
    border-right: 1px solid var(--border);
}
.nav__dropdown-col:first-child { padding-left: 0; }
.nav__dropdown-col:last-child { border-right: none; padding-right: 0; }
.nav__dropdown-label {
    padding: 0.6rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}
.nav__dropdown-menu a {
    display: block;
    padding: 0.7rem 2rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}
.nav__dropdown-menu a::after { display: none; }
.nav__dropdown-menu a:hover {
    background: var(--orange-light);
    color: var(--orange);
    padding-left: 2.4rem;
}
.nav__dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 0.6rem 0;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav__toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
    padding: 16rem 0 8rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.page-hero__shape {
    position: absolute;
    right: -8%;
    top: -20%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.06;
}
.page-hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.6rem; max-width: 640px; }
.page-hero .subtitle { margin-bottom: 1.2rem; }

/* Split variant: text on navy left, clear image right */
.page-hero--split { padding: 0; }
.page-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60vh;
}
.page-hero--split .page-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16rem 6rem 8rem 0;
    margin-left: auto;
    max-width: 620px;
    width: 100%;
    padding-left: 2.4rem;
}
.page-hero--split .page-hero__media {
    position: relative;
    overflow: hidden;
}
.page-hero--split .page-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== SECTIONS ========== */
.section { padding: 10rem 0; }
.section--light { background: var(--light); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy h5 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.7); }
.section--navy .subtitle { color: rgba(255,255,255,0.5); }
.section--orange { background: var(--orange); color: var(--white); }
.section--orange h2,
.section--orange h3 { color: var(--white); }
.section--orange p { color: rgba(255,255,255,0.85); }
.section--orange .subtitle { color: rgba(255,255,255,0.7); }

.section__header {
    max-width: 640px;
    margin-bottom: 6rem;
}
.section__header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section__header h2 { margin-bottom: 1.6rem; }
.section__header .subtitle { margin-bottom: 1.2rem; }

/* ========== HOMEPAGE HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    background: var(--navy);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.9;
}
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,31,54,0.9) 0%, rgba(26,31,54,0.5) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 8rem 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    background: rgba(242,112,36,0.15);
    border: 1px solid rgba(242,112,36,0.3);
    border-radius: 100px;
    margin-bottom: 2.4rem;
}
.hero__badge span {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero__badge i {
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 { color: var(--white); margin-bottom: 2rem; }
.hero h1 .highlight { color: var(--orange); }

.hero p {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3.6rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 1.6rem;
    flex-wrap: wrap;
}

.hero__shape {
    position: absolute;
    right: -5%;
    bottom: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.06;
    z-index: 1;
}

/* ========== STATS BANNER ========== */
.stats-banner {
    background: var(--orange);
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}
.stats-banner__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.stats-banner__item {
    text-align: center;
    flex: 1;
}
.stats-banner__item h3 {
    color: var(--white);
    font-size: clamp(2.2rem, 2.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stats-banner__item p {
    color: rgba(255,255,255,0.85);
    font-size: 1.4rem;
    font-weight: 500;
}

/* ========== PARTNERS BANNER ========== */
.partners-banner {
    padding: 6rem 0;
    background: var(--light);
    /* border-top: 1px solid rgba(26,31,54,0.06);
    border-bottom: 1px solid rgba(26,31,54,0.06); */
}
.partners-banner__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 3.2rem;
}
.partners-banner__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}
.partners-banner__item img {
    max-width: 100%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.partners-banner__item a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    text-decoration: none;
    color: inherit;
}
.partners-banner__item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}
.partners-banner__item--cqc {
    min-height: auto;
}
.partners-banner__item--cqc .cqc-widget,
.partners-banner__item--cqc .cqc-widget * {
    filter: none !important;
    opacity: 1 !important;
}
@media (max-width: 992px) {
    .partners-banner__grid { grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }
    .partners-banner__item--cqc { grid-column: span 3; }
}
@media (max-width: 600px) {
    .partners-banner { padding: 4rem 0; }
    .partners-banner__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .partners-banner__item { min-height: 70px; }
    .partners-banner__item img { max-height: 60px; }
    .partners-banner__item--cqc { grid-column: span 2; }
}

/* ========== DRIVEN SERVICES (homepage) ========== */
.driven {
    position: relative;
    background: var(--white);
}
.driven__wrap {
    position: relative;
    z-index: 3;
    overflow: hidden;
    padding-top: max(7rem, 6vh);
    padding-bottom: max(7rem, 6vh);
}
.driven__inner {
    position: relative;
    z-index: 1;
}
.driven__heading-row {
    margin-bottom: max(4.6rem, 5vh);
}
.driven__heading-row > div {
    max-width: 50%;
}
.driven__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: clamp(2.1rem, 3vw, 3.4rem);
    margin-bottom: clamp(1.8rem, 1.2vw, 3rem);
}
.driven__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.12em;
    bottom: 0.16em;
    width: clamp(0.8rem, 1.1vw, 1.5rem);
    background-color: var(--orange);
}
.driven__title span {
    display: block;
    text-align: start;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: min(10vw, 3.6rem);
    line-height: 1;
    text-transform: uppercase;
    color: var(--text);
}
.driven__heading-row p {
    font-size: clamp(1.5rem, 1vw, 1.8rem);
    line-height: 1.42;
    color: var(--text-secondary);
}
.driven__heading-row h6 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.4rem, 1vw, 1.7rem);
    text-transform: uppercase;
    color: var(--text);
    margin-top: clamp(1.8rem, 1.2vw, 3rem);
}
.driven__bg {
    z-index: -1;
    top: 0;
    left: 100%;
    width: 84%;
    padding-bottom: 83%;
    margin-bottom: -10rem;
    margin-top: calc(max(3rem, 4vh) * -0.6);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.driven__bg img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 576px) {
    .driven__bg { padding-bottom: 44%; }
}
@media (min-width: 992px) {
    .driven__bg {
        position: absolute;
        height: 100%;
        padding-bottom: 0;
        width: 50%;
        margin: 0;
        transform: translate3d(-100%, 0, 0);
    }
}
.driven__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 1;
}
@media (min-width: 1200px) {
    .driven__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1400px) {
    .driven__grid { gap: 5rem; }
}
.driven__card {
    width: 100%;
    padding: 3rem 2.1rem;
    border-radius: 5px;
    box-shadow: 0.4rem 0.4rem 1.2rem rgba(0,0,0,0.22);
    transition: all 0.4s cubic-bezier(0.19, 0.52, 0.58, 1);
    background: var(--white);
    display: flex;
    flex-direction: column;
    color: inherit;
}
@media (min-width: 576px) {
    .driven__card { width: calc(50% - 1.5rem); }
}
@media (min-width: 992px) {
    .driven__card { padding: 3rem; }
}
@media (min-width: 1200px) {
    .driven__card { flex: 1; width: auto; }
}
@media (min-width: 1400px) {
    .driven__card { padding: 4.5rem; }
}
@media (hover: hover) {
    .driven__card:hover {
        box-shadow: 0.6rem 0.6rem 2rem rgba(0,0,0,0.22);
        transform: translate3d(0, -0.5rem, 0);
    }
}
.driven__card__icon {
    width: clamp(5rem, 4.5vw, 7.6rem);
    height: clamp(5rem, 4.5vw, 7.6rem);
    margin-bottom: clamp(2rem, 4vw, 2.6rem);
    display: flex;
    align-items: center;
    justify-content: center;
}
.driven__card__icon svg {
    width: 100%;
    height: 100%;
    color: var(--orange);
}
.driven__card h4 {
    font-family: var(--font-primary);
    font-size: clamp(1.7rem, 1.2vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
    color: #000;
    margin: 0;
}
.driven__card h4 .arrow {
    display: inline-block;
    margin-left: 0.2rem;
    font-size: 1.5rem;
    color: var(--orange);
    font-style: normal;
    transition: transform var(--transition);
}
@media (min-width: 1400px) {
    .driven__card h4 .arrow { font-size: 1.9rem; }
}
.driven__card:hover h4 .arrow {
    transform: translateX(4px);
}
.driven__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: max(4.6rem, 5vh);
}

/* ========== CARE GRID (homepage specialisms) ========== */
.care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.care-item {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 2rem 2.4rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.care-item:hover {
    background: rgba(242,112,36,0.1);
    border-color: rgba(242,112,36,0.3);
    transform: translateX(4px);
}
.care-item__dot {
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}
.care-item span {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

/* ========== VALUES / WHY US (homepage) ========== */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}
.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.value-item {
    display: flex;
    gap: 1.6rem;
    align-items: flex-start;
}
.value-item__icon {
    width: 4.4rem;
    height: 4.4rem;
    min-width: 4.4rem;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-item__icon svg {
    width: 2rem; height: 2rem;
    color: var(--orange);
}
.value-item h5 { margin-bottom: 0.4rem; }
.value-item p { font-size: 1.4rem; }
.values-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.values-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius);
}
.values-image__badge {
    position: absolute;
    bottom: 2.4rem;
    left: 2.4rem;
    right: 2.4rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    padding: 2rem 2.4rem;
    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.values-image__badge svg {
    width: 3.6rem; height: 3.6rem;
    color: var(--orange);
    flex-shrink: 0;
}
.values-image__badge p {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
}

/* ========== LOCATIONS (homepage) ========== */
.locations-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
}
.location-card {
    text-align: center;
    padding: 4rem 2.4rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.location-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.location-card__icon {
    width: 6.4rem;
    height: 6.4rem;
    margin: 0 auto 1.6rem;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.location-card__icon svg {
    width: 2.8rem; height: 2.8rem;
    color: var(--orange);
}
.location-card h4 { font-size: 1.5rem; }

/* ========== TESTIMONIAL (homepage) ========== */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.testimonial__image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.testimonial__image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.testimonial__content blockquote {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 3.2rem;
    position: relative;
    padding-left: 3rem;
    border-left: 4px solid var(--orange);
}
.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}
.testimonial__author__avatar {
    width: 5.2rem;
    height: 5.2rem;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: white;
}
.testimonial__author p { font-size: 1.4rem; }
.testimonial__author strong {
    display: block;
    font-size: 1.6rem;
    color: var(--white);
}

/* ========== REVIEWS (homepage overlap sections) ========== */
.reviews-section {
    position: relative;
    background: var(--white);
}
.reviews {
    --ov-height: clamp(8rem, 4vw, 9rem);
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.reviews__row { position: relative; }
.reviews .overlap {
    width: 100%;
    height: var(--ov-height);
}
.reviews .overlap--top { background: var(--navy); }
.reviews .overlap--bottom { background: var(--light); }
.reviews .overlap--light { background: var(--light); }
.reviews .overlap--orange { background: var(--orange); }
.reviews__image { display: none; }
.reviews__image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 768px) {
    .reviews__image {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 34%;
        border-radius: 5px;
        overflow: hidden;
        z-index: 2;
    }
}
@media (min-width: 992px) {
    .reviews__image { width: 38%; }
}
.reviews__text {
    padding-top: max(7rem, 6vh);
    padding-bottom: max(7rem, 6vh);
}
.reviews__text .subtitle {
    color: var(--orange);
    margin-bottom: 0.7em;
}
.reviews__text h2 {
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    font-size: min(10vw, 3.6rem);
    line-height: 1;
    margin-bottom: clamp(1.6rem, 1vw, 2.4rem);
}
.reviews__quote {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.7;
    text-transform: none;
    color: var(--text-secondary);
    margin: 0;
}
.reviews__quote::before,
.reviews__quote span::after { display: none; }
.reviews__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2em;
    margin-top: max(3rem, 4vh);
}
.reviews__author {
    position: relative;
    padding-left: 0.9em;
    color: var(--text-secondary);
}
.reviews__author::before {
    content: "\2013";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--text);
}
.reviews__author p { margin-bottom: 0; color: var(--text-secondary); }
.reviews__author b { color: var(--text); }
.reviews__col-right { max-width: 58.333%; }

/* ========== SERVICE CARDS (services.html) ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
.svc-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.19, 0.52, 0.58, 1);
}
.svc-card:hover {
    transform: translate3d(0, -0.5rem, 0);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.svc-card__img {
    position: relative;
    overflow: hidden;
    height: 24rem;
}
.svc-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.svc-card:hover .svc-card__img img { transform: scale(1.05); }
.svc-card__num {
    position: absolute;
    top: 1.6rem; left: 1.6rem;
    width: 3.6rem; height: 3.6rem;
    background: var(--orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 900; font-size: 1.5rem;
    color: var(--white);
}
.svc-card__body { padding: 3rem; }
.svc-card__body h3 { margin-bottom: 1.2rem; }
.svc-card__body p { font-size: 1.5rem; margin-bottom: 2rem; }
.svc-card__link {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 1.4rem; font-weight: 600; color: var(--orange);
}
.svc-card__link::after { content: '\2192'; transition: transform var(--transition); }
.svc-card:hover .svc-card__link::after { transform: translateX(4px); }

/* ========== HIGHLIGHT BANNER (services.html) ========== */
.highlight-banner {
    background: var(--orange);
    padding: 6rem 0;
    text-align: center;
}
.highlight-banner p {
    color: var(--white);
    font-size: clamp(1.6rem, 1.4vw, 2rem);
    font-weight: 500;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* ========== SPECIALISMS GRID (services.html) ========== */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.spec-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.spec-item:hover {
    background: rgba(242,112,36,0.12);
    border-color: rgba(242,112,36,0.3);
    transform: translateY(-4px);
}
.spec-item__icon {
    width: 5rem; height: 5rem;
    margin: 0 auto 1.4rem;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.spec-item__icon svg { width: 2.4rem; height: 2.4rem; color: var(--orange); }
.spec-item h5 { color: var(--white); font-size: 1.4rem; line-height: 1.3; }

/* ========== LOCATIONS GRID (services.html) ========== */
.loc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
}
.loc-card {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.loc-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.loc-card__num {
    width: 4rem; height: 4rem;
    margin: 0 auto 1.6rem;
    background: var(--orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 900; font-size: 1.5rem;
    color: var(--white);
}
.loc-card__icon {
    width: 5.6rem; height: 5.6rem;
    margin: 0 auto 1.6rem;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.loc-card__icon svg { width: 2.4rem; height: 2.4rem; color: var(--orange); }
.loc-card h4 { font-size: 1.5rem; }

/* ========== FEATURE GRID (service detail pages) ========== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem;
    transition: all var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card__icon {
    width: 4.8rem;
    height: 4.8rem;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
}
.feature-card__icon svg {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--orange);
}
.feature-card h4 { margin-bottom: 0.8rem; }
.feature-card p { font-size: 1.5rem; }

/* ========== WHO IS THIS FOR (service detail pages) ========== */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.who-content .subtitle { margin-bottom: 1.2rem; }
.who-content h2 { margin-bottom: 1.6rem; }
.who-content p { margin-bottom: 2rem; }
.who-image {
    border-radius: var(--radius);
    overflow: hidden;
}
.who-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ========== OUR APPROACH (service detail pages) ========== */
.approach-content { max-width: 760px; display: flex;
    flex-direction: column;
    justify-self: center;}
.approach-content .subtitle { margin-bottom: 1.2rem; }
.approach-content h2 { margin-bottom: 1.6rem; }
.approach-content p { margin-bottom: 1.6rem; }
.approach-content .btn { margin-top: 1.2rem; width: fit-content;}

/* ========== CONTACT PAGE ========== */
.contact-section { padding: 10rem 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}
.contact-info h2 { margin-bottom: 1.6rem; }
.contact-info > p { margin-bottom: 4rem; }
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 2.4rem;
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 2rem;
    transition: all var(--transition);
}
.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.contact-card__icon {
    width: 4.8rem;
    height: 4.8rem;
    min-width: 4.8rem;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-card__icon svg {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--orange);
}
.contact-card h4 { margin-bottom: 0.4rem; font-size: 1.5rem; }
.contact-card p { font-size: 1.4rem; line-height: 1.6; }
.contact-card a { color: var(--orange); font-weight: 500; }
.contact-card a:hover { color: var(--orange-dark); }
.contact-hours {
    margin-top: 3rem;
    padding: 2.4rem;
    background: var(--navy);
    border-radius: var(--radius);
}
.contact-hours h4 { color: var(--white); margin-bottom: 1.2rem; font-size: 1.5rem; }
.contact-hours__row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-hours__row:last-child { border-bottom: none; }
.contact-hours__row span { font-size: 1.4rem; color: rgba(255,255,255,0.6); }
.contact-hours__row strong { font-size: 1.4rem; color: var(--white); font-weight: 600; }
.contact-hours__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.6rem;
    padding: 0.8rem 1.6rem;
    background: rgba(242,112,36,0.15);
    border-radius: 100px;
}
.contact-hours__badge i {
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.contact-hours__badge span {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--orange);
}
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4rem;
    box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 0.8rem; }
.contact-form-wrap > p { margin-bottom: 3rem; font-size: 1.4rem; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.form-row--full { grid-template-columns: 1fr; }
.form-group { margin-bottom: 2rem; }
.form-group label {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242,112,36,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0a4b8; }
.form-group textarea { resize: vertical; min-height: 14rem; }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a5f7a' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.6rem center;
    padding-right: 4rem;
}
.form-submit { width: 100%; justify-content: center; margin-top: 0.8rem; }
.form-note { font-size: 1.2rem; color: var(--text-secondary); margin-top: 1.6rem; text-align: center; }

/* ========== MAP SECTION (contact.html) ========== */
.map-section { background: var(--light); padding: 8rem 0; }
.map-section .section__header { max-width: 640px; margin-bottom: 4rem; }
.map-section .section__header h2 { margin-bottom: 1.2rem; }
.map-section .section__header .subtitle { margin-bottom: 1.2rem; }
.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    padding-bottom: 40%;
    height: 0;
}
.map-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.map-address { display: flex; gap: 4rem; margin-top: 3rem; flex-wrap: wrap; }
.map-address__item { display: flex; align-items: center; gap: 1.2rem; }
.map-address__item svg { width: 2rem; height: 2rem; color: var(--orange); flex-shrink: 0; }
.map-address__item p { font-size: 1.4rem; }
.map-address__item a { color: var(--orange); font-weight: 500; }

/* ========== ABOUT US PAGE ========== */

/* ---- Split Hero ---- */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}
.about-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16rem 6rem 8rem 0;
    margin-left: auto;
    max-width: 620px;
    width: 100%;
}
.about-hero__content .subtitle { margin-bottom: 1.2rem; }
.about-hero__content h1 { margin-bottom: 1.6rem; }
.about-hero__content > p { margin-bottom: 3rem; font-size: 1.6rem; line-height: 1.7; }

.about-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.about-hero__badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.6rem;
    border-left: 3px solid var(--orange);
    background: var(--light);
    border-radius: 0 100px 100px 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
}
.about-hero__badge-item svg {
    width: 1.6rem; height: 1.6rem;
    color: var(--orange);
}

.about-hero__image {
    position: relative;
    overflow: hidden;
}
.about-hero__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Story Timeline ---- */
.timeline {
    padding: 10rem 0;
    background: var(--white);
}
.timeline .section__header { margin-bottom: 6rem; }

.timeline__line {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline__line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline__item {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    padding-right: 4rem;
}
.timeline__item:last-child { margin-bottom: 0; }

.timeline__item--right {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 4rem;
    flex-direction: row-reverse;
}
.timeline__item--right .timeline__card { text-align: left; }

.timeline__dot {
    position: absolute;
    right: -9px;
    top: 2.4rem;
    width: 16px;
    height: 16px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--border);
    z-index: 2;
    flex-shrink: 0;
}
.timeline__item--right .timeline__dot {
    right: auto;
    left: -9px;
}

.timeline__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.4rem;
    transition: all var(--transition);
    flex: 1;
}
.timeline__card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.timeline__year {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}
.timeline__card h4 { margin-bottom: 0.6rem; font-size: 1.5rem; }
.timeline__card p { font-size: 1.4rem; }

/* ---- Numbered Principles ---- */
.principles {
    padding: 10rem 0;
    background: var(--light);
}
.principles .section__header { margin-bottom: 5rem; }

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

.principle-card {
    background: var(--white);
    padding: 3rem;
    border-left: 3px solid var(--orange);
    border-radius: 0 var(--radius) var(--radius) 0;
    position: relative;
    transition: all var(--transition);
}
.principle-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.principle-card__number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(4rem, 5vw, 6rem);
    color: var(--orange);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.principle-card h4 { margin-bottom: 0.8rem; font-size: 1.5rem; }
.principle-card p { font-size: 1.4rem; }

/* ---- Founder Spotlight ---- */
.spotlight {
    padding: 10rem 0;
    background: var(--white);
}

.spotlight__card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 4.8rem;
    display: flex;
    align-items: center;
    gap: 4.8rem;
}

.spotlight__portrait {
    flex-shrink: 0;
}
.spotlight__portrait img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--orange);
}

.spotlight__content { flex: 1; }
.spotlight__role {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 0.6rem;
}
.spotlight__content h3 { margin-bottom: 0.4rem; }
.spotlight__content > p {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.spotlight__founded {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ---- Accreditation Bar ---- */
.accreditations {
    background: var(--navy);
    padding: 4.8rem 0;
}

.accreditations__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accreditations__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
    padding: 0 2rem;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: all var(--transition);
}
.accreditations__item:last-child { border-right: none; }
.accreditations__item:hover .accreditations__icon svg {
    transform: scale(1.15);
}

.accreditations__icon svg {
    width: 2.8rem;
    height: 2.8rem;
    color: var(--orange);
    transition: transform var(--transition);
}

.accreditations__label {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-align: center;
}
.accreditations__item:hover .accreditations__label {
    color: var(--white);
}

/* ---- Staff & Community Two-Up ---- */
.two-up {
    padding: 10rem 0;
    background: var(--white);
}

.two-up__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.two-up__card {
    padding: 3.6rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.two-up__card--accent {
    background: var(--orange-light);
    border-color: transparent;
}
.two-up__card .subtitle { margin-bottom: 1rem; }
.two-up__card h3 { margin-bottom: 1.2rem; }
.two-up__card p { font-size: 1.5rem; margin-bottom: 2rem; }

.two-up__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.two-up__pill {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    background: var(--navy);
    color: var(--white);
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* ---- Complaints Process Steps ---- */
.process-steps {
    padding: 8rem 0;
    background: var(--light);
}
.process-steps .section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 5rem;
}
.process-steps .section__header h2 { margin-bottom: 1.2rem; }
.process-steps .section__header .subtitle { margin-bottom: 1.2rem; }

.process-steps__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 3.2rem;
    left: calc(50% + 3.2rem + 1rem);
    right: calc(-50% + 3.2rem + 1rem);
    height: 2px;
    border-top: 2px dashed var(--border);
}

.process-step__circle {
    width: 6.4rem;
    height: 6.4rem;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 1;
}

.process-step__label {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.6rem;
}
.process-step__desc {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 220px;
}

/* ========== IMAGE HERO (careers page) ========== */
.image-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16rem 0 8rem;
    overflow: hidden;
}
.image-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.image-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,31,54,0.7) 0%, rgba(26,31,54,0.85) 100%);
    z-index: 1;
}
.image-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.image-hero__content .subtitle {
    color: var(--orange);
    margin-bottom: 1.2rem;
}
.image-hero__content h1 {
    color: var(--white);
    margin-bottom: 1.6rem;
}
.image-hero__content > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}
.image-hero__actions {
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== EMPLOYMENT PAGE ========== */

/* ---- Job Listings ---- */
.job-list { display: flex; flex-direction: column; gap: 2rem; }

.job-card {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 2.4rem;
    padding: 2.4rem 3rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.job-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.job-card__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--text);
}
.job-card__meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    color: var(--text-secondary);
    white-space: nowrap;
}
.job-card__meta svg { width: 1.6rem; height: 1.6rem; color: var(--orange); flex-shrink: 0; }
.job-card .btn { white-space: nowrap; padding: 1rem 2.4rem; font-size: 1.3rem; }

/* ---- Benefits Grid ---- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
}
.benefit-card {
    text-align: center;
    padding: 3.6rem 2.4rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.benefit-card:hover {
    background: rgba(242,112,36,0.1);
    border-color: rgba(242,112,36,0.3);
    transform: translateY(-4px);
}
.benefit-card__icon {
    width: 5.2rem; height: 5.2rem;
    margin: 0 auto 1.6rem;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.benefit-card__icon svg { width: 2.4rem; height: 2.4rem; color: var(--orange); }
.benefit-card h4 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.6rem; }
.benefit-card p { font-size: 1.4rem; color: rgba(255,255,255,0.6); }

/* ========== TRAINING PAGE ========== */

/* ---- Training Pathway ---- */
.pathway {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.pathway-card {
    padding: 3.6rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all var(--transition);
}
.pathway-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.pathway-card__tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.6rem;
}
.pathway-card h3 { margin-bottom: 1.2rem; }
.pathway-card p { font-size: 1.5rem; margin-bottom: 2rem; }
.pathway-card__detail {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.pathway-card__detail svg { width: 1.6rem; height: 1.6rem; }

/* ---- Course Grid ---- */
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.course-item {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 2rem 2.4rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.course-item:hover {
    border-color: var(--orange);
    transform: translateX(4px);
    box-shadow: var(--shadow);
}
.course-item__icon {
    width: 4rem; height: 4rem;
    min-width: 4rem;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.course-item__icon svg { width: 1.8rem; height: 1.8rem; color: var(--orange); }
.course-item span { font-size: 1.4rem; font-weight: 600; color: var(--text); }

/* ========== POLICY CONTENT (legal / long-form pages) ========== */
.policy-content {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 1.75;
    color: var(--text);
}
.policy-content h2 {
    font-size: clamp(2rem, 2.4vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    margin-top: 4.8rem;
    margin-bottom: 1.8rem;
    letter-spacing: -0.02em;
}
.policy-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}
.policy-content p {
    margin-bottom: 1.8rem;
    color: rgba(26,31,54,0.78);
}
.policy-content a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}
.policy-content a:hover {
    color: var(--orange-dark);
}
.policy-content__list {
    margin: 0 0 2.4rem 2.2rem;
    padding: 0;
    counter-reset: policy-num;
    list-style: none;
}
.policy-content__list > li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.4rem;
    counter-increment: policy-num;
    color: rgba(26,31,54,0.78);
}
.policy-content__list > li::before {
    content: counter(policy-num) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: var(--orange);
}
.policy-content__sublist {
    margin: 1.2rem 0 0 0;
    padding-left: 2rem;
}
.policy-content__sublist li {
    margin-bottom: 0.8rem;
    color: rgba(26,31,54,0.78);
}
.policy-content__bullets {
    margin: 0 0 2.4rem 0;
    padding: 0;
    list-style: none;
}
.policy-content__bullets li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
    color: rgba(26,31,54,0.78);
}
.policy-content__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 0.7rem;
    height: 0.7rem;
    background: var(--orange);
    border-radius: 50%;
    transform: translateY(-50%);
}
.policy-contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    margin-top: 2.4rem;
}
.policy-contact {
    background: var(--white);
    border: 1px solid rgba(26,31,54,0.08);
    border-left: 4px solid var(--orange);
    border-radius: 0.8rem;
    padding: 2.4rem;
}
.policy-contact h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
}
.policy-contact p {
    font-size: 1.45rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}
.policy-contact p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
    .policy-content { font-size: 1.5rem; }
    .policy-contacts { grid-template-columns: 1fr; gap: 1.6rem; }
    .policy-content h2 { margin-top: 3.6rem; }
}

/* ---- Employment/Training responsive ---- */
@media (max-width: 1024px) {
    .job-card { grid-template-columns: 1fr; gap: 1.2rem; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .course-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .pathway { grid-template-columns: 1fr; }
    .course-grid { grid-template-columns: 1fr; }
    .job-card { padding: 2rem; }
}

/* ========== CQC REGULATED BANNER ========== */
.cqc-banner {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: var(--navy);
}
.cqc-banner__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1584982751601-97dcc096659c?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.21;
}
@media (min-width: 1025px) {
    .cqc-banner__bg { background-attachment: fixed; }
}
.cqc-banner__shape {
    position: absolute;
    left: 0; right: 0;
    width: 298%;
    height: 69px;
    margin-left: -99%;
}
.cqc-banner__shape--top { top: 0; }
.cqc-banner__shape--bottom { bottom: -1px; }
.cqc-banner__shape svg { width: 100%; height: 100%; }
.cqc-banner__shape svg .shape-fill { fill: var(--navy); }
.cqc-banner h2 {
    position: relative;
    z-index: 1;
    text-align: center;
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    color: var(--white);
    padding: 5rem 2rem;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    position: relative;
    padding: 10rem 0;
    text-align: center;
    background: var(--orange);
    overflow: hidden;
}
.cta-banner__inner {
    text-align: center;
    position: relative;
    z-index: 2;
}
.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1.6rem;
}
.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.6rem;
    margin-bottom: 3.6rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.cta-banner__shape--1 { width: 400px; height: 400px; top: -200px; right: -100px; }
.cta-banner__shape--2 { width: 300px; height: 300px; bottom: -150px; left: -80px; }

/* ========== FOOTER ========== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
}
.footer__main {
    padding: 8rem 0 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
}
.footer__brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
}
.footer__brand-img {
    display: block;
    height: 5.2rem;
    width: auto;
    background: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 0.8rem;
}
.footer__desc {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.4rem;
    line-height: 1.8;
}
.footer__socials { display: flex; gap: 1.2rem; }
.footer__socials a {
    width: 4rem;
    height: 4rem;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.footer__socials a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}
.footer__socials a svg { width: 1.8rem; height: 1.8rem; fill: white; }
.footer h5 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer__links li { margin-bottom: 1rem; }
.footer__links a {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}
.footer__links a:hover {
    color: var(--orange);
    padding-left: 4px;
}
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.6rem;
    font-size: 1.4rem;
}
.footer__contact-item svg {
    width: 1.8rem; height: 1.8rem;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}
.footer__contact-item a,
.footer__contact-item span { color: rgba(255,255,255,0.6); }
.footer__contact-item a:hover { color: var(--orange); }
.footer__bottom {
    padding: 2.4rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.6rem;
}
.footer__bottom p { font-size: 1.3rem; color: rgba(255,255,255,0.4); }
.footer__bottom-links { display: flex; gap: 2.4rem; }
.footer__bottom-links a { font-size: 1.3rem; color: rgba(255,255,255,0.4); }
.footer__bottom-links a:hover { color: var(--orange); }
.footer__cqc {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    margin-top: 2rem;
}
.footer__cqc svg { width: 2rem; height: 2rem; color: var(--orange); flex-shrink: 0; }
.footer__cqc p { font-size: 1.3rem; color: rgba(255,255,255,0.7); }

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   RESPONSIVE — TABLET (max 1024px)
   ================================================================ */
@media (max-width: 1024px) {
    .care-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { gap: 4rem; grid-template-columns: 1fr 1fr; }
    .locations-row { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .testimonial__image { max-height: 36rem; }
    .footer__main { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .section { padding: 8rem 0; }
    .spec-grid { grid-template-columns: repeat(3, 1fr); }
    .loc-grid { grid-template-columns: repeat(2, 1fr); }
    .who-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .map-wrap { padding-bottom: 50%; }

    /* driven services — hide floating bg image on tablet/mobile */
    .driven__bg { display: none; }

    /* nav */
    .nav__menu { display: none; }
    .nav__phone { display: none; }
    .nav__cta--desktop { display: none; }
    .nav__toggle { display: flex; }

    .nav__menu {
        position: fixed;
        top: 0; left: 0; right: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
        padding: 2rem;
        overflow-y: auto;
    }
    .nav__menu.open {
        display: flex;
        transform: translateX(0);
    }
    .nav__menu.open .nav__links {
        display: flex;
        flex-direction: column;
        gap: 2.4rem;
        text-align: center;
    }
    .nav__menu.open .nav__links a { font-size: 1.8rem; }
    .nav__menu.open .nav__links .btn { margin-top: 1rem; }

    /* mobile dropdown: collapsible */
    .nav__dropdown-toggle {
        justify-content: center;
    }
    .nav__dropdown-toggle svg {
        display: block;
        width: 1.6rem;
        height: 1.6rem;
        transition: transform var(--transition);
    }
    .nav__dropdown.open .nav__dropdown-toggle svg {
        transform: rotate(180deg);
    }
    /* override desktop hover — do nothing on mobile */
    .nav__dropdown:hover .nav__dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }
    .nav__dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        min-width: 0;
        width: auto;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    }
    .nav__dropdown.open .nav__dropdown-menu {
        max-height: 80vh;
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
        padding: 1.2rem 0 0;
    }
    .nav__dropdown-menu::before { display: none; }
    .nav__dropdown-label { display: none; }
    .nav__dropdown-divider { display: none; }
    .nav__dropdown-inner { flex-direction: column; gap: 0; padding: 0; }
    .nav__dropdown-col { padding: 0; border-right: none; }
    .nav__dropdown-menu a {
        padding: 0.4rem 0;
        font-size: 1.4rem;
        color: var(--text-secondary);
        text-align: center;
    }
    .nav__dropdown-menu a:hover { background: transparent; padding-left: 0; color: var(--orange); }
    .nav__menu .nav__mobile-phone {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-weight: 600;
        font-size: 1.6rem;
        color: var(--orange);
        margin-top: 1rem;
    }
    .nav__menu .nav__mobile-phone svg {
        width: 2rem; height: 2rem;
        color: var(--orange);
    }

    /* homepage */
    .hero { min-height: auto; }
    .hero__content { padding: 6rem 0; }
    .driven__heading-row > div { max-width: 80%; }
    .reviews__col-right { max-width: 100%; }
    .cqc-banner h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); padding: 3rem 2rem; }

    /* image hero */
    .image-hero { min-height: 60vh; }

    /* about page */
    .about-hero { grid-template-columns: 1fr; }
    .about-hero__image { height: 40vh; position: relative; order: -1; }
    .about-hero__image img { position: absolute; }
    .about-hero__content { padding: 4rem 0 6rem; max-width: 100%; }

    .page-hero__inner { grid-template-columns: 1fr; min-height: auto; }
    .page-hero--split .page-hero__media { height: 40vh; order: -1; }
    .page-hero--split .page-hero__content { padding: 4rem 2.4rem 6rem; max-width: 100%; margin-left: 0; }
    .principles__grid { grid-template-columns: repeat(2, 1fr); }
    .spotlight__card { padding: 3.6rem; gap: 3rem; }
    .two-up__grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   RESPONSIVE — MOBILE (max 768px)
   ================================================================ */
@media (max-width: 768px) {
    .section { padding: 6rem 0; }
    .container { padding: 0 2rem; }
    .page-hero { padding: 12rem 0 5rem; }

    /* homepage hero */
    .hero { min-height: auto; padding-top: 8rem; }
    .hero__content { padding: 4rem 0; max-width: 100%; }
    .hero__badge span { font-size: 1.1rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__shape { width: 300px; height: 300px; right: -15%; bottom: -5%; }

    /* stats */
    .stats-banner { padding: 3.6rem 0; }
    .stats-banner__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; }

    /* driven */
    .driven__heading-row > div { max-width: 100%; }
    .driven__wrap { padding-top: 5rem; padding-bottom: 5rem; }
    .driven__grid { gap: 2rem; }
    .driven__card { padding: 2.4rem 2rem; }
    .driven__card__icon { width: 4.4rem; height: 4.4rem; margin-bottom: 1.6rem; }

    /* specialisms */
    .care-grid { grid-template-columns: 1fr; }
    .care-item { padding: 1.6rem 2rem; }
    .section__header { margin-bottom: 4rem; }

    /* reviews */
    .reviews__col-right { max-width: 100%; }
    .reviews__text { padding-top: 5rem; padding-bottom: 5rem; }
    .reviews__bottom { flex-direction: column; gap: 1.6rem; }

    /* values */
    .values-grid { grid-template-columns: 1fr; gap: 3rem; }
    .values-image { order: -1; }
    .values-image img { aspect-ratio: 16/9; }
    .values-image__badge { left: 1.6rem; right: 1.6rem; bottom: 1.6rem; padding: 1.6rem; }
    .values-image__badge svg { width: 2.8rem; height: 2.8rem; }
    .values-image__badge p { font-size: 1.3rem; }
    .section__header.left { text-align: left; }

    /* locations */
    .locations-row { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
    .location-card { padding: 2.4rem 1.6rem; }
    .location-card__icon { width: 5rem; height: 5rem; margin-bottom: 1.2rem; }
    .location-card__icon svg { width: 2.2rem; height: 2.2rem; }

    /* testimonial */
    .testimonial-grid { grid-template-columns: 1fr; gap: 3rem; }
    .testimonial__image { max-height: 28rem; border-radius: var(--radius); overflow: hidden; }
    .testimonial__image img { aspect-ratio: 16/9; }
    .testimonial__content blockquote { font-size: 1.6rem; padding-left: 2rem; }

    /* services page */
    .services-grid { grid-template-columns: 1fr; }
    .spec-grid { grid-template-columns: repeat(2, 1fr); }
    .loc-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr; }

    /* contact */
    .contact-section { padding: 6rem 0; }
    .contact-form-wrap { padding: 2.8rem 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .map-section { padding: 6rem 0; }
    .map-wrap { padding-bottom: 70%; }
    .map-address { flex-direction: column; gap: 1.6rem; }

    /* CTA / CQC */
    .cta-banner { padding: 6rem 0; }
    .cta-banner h2 { font-size: clamp(2rem, 5vw, 2.8rem); }
    .cta-banner p { font-size: 1.5rem; }
    .cqc-banner { padding: 6rem 0; }
    .cqc-banner h2 { font-size: 2rem; padding: 2rem 1rem; letter-spacing: -0.02em; }

    /* image hero */
    .image-hero { min-height: auto; padding: 12rem 0 6rem; }
    .image-hero__actions { flex-direction: column; }
    .image-hero__actions .btn { width: 100%; justify-content: center; }

    /* about page */
    .about-hero__content { padding: 3rem 0 5rem; }
    .about-hero__image { height: 30vh; }
    .about-hero__badges { gap: 0.8rem; }

    .timeline { padding: 7rem 0; }
    .timeline__line::before { left: 0; }
    .timeline__item { width: 100%; padding-right: 0; padding-left: 3.6rem; }
    .timeline__item--right { margin-left: 0; padding-left: 3.6rem; flex-direction: row; }
    .timeline__dot { left: -9px; right: auto; }
    .timeline__item--right .timeline__dot { left: -9px; }

    .principles { padding: 7rem 0; }
    .principles__grid { grid-template-columns: 1fr; }

    .spotlight { padding: 7rem 0; }
    .spotlight__card { flex-direction: column; text-align: center; padding: 3rem; gap: 2.4rem; }
    .spotlight__portrait img { width: 160px; height: 160px; }

    .accreditations__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .accreditations__item { border-right: none; padding: 1.6rem 0; }

    .two-up { padding: 7rem 0; }
    .two-up__grid { grid-template-columns: 1fr; }
    .two-up__card { padding: 2.8rem; }

    .process-steps { padding: 6rem 0; }
    .process-steps__inner { flex-direction: column; align-items: center; gap: 3rem; }
    .process-step { flex-direction: column; padding: 0; }
    .process-step:not(:last-child)::after {
        top: auto;
        left: 50%;
        right: auto;
        bottom: -1.8rem;
        width: 2px;
        height: 2rem;
        border-top: none;
        border-left: 2px dashed var(--border);
        transform: translateX(-50%);
    }

    /* footer */
    .footer__main { grid-template-columns: 1fr; gap: 3rem; }
    .footer__bottom { flex-direction: column; text-align: center; gap: 1.2rem; }
    .footer__bottom-links { flex-wrap: wrap; justify-content: center; gap: 1.6rem; }
    .footer__socials { justify-content: flex-start; }

    /* buttons */
    .btn { padding: 1.2rem 2.4rem; font-size: 1.3rem; }
    .driven__buttons { flex-direction: column; }
    .driven__buttons .btn { width: 100%; justify-content: center; }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ================================================================ */
@media (max-width: 480px) {
    html { font-size: 58%; }
    .container { padding: 0 1.6rem; }

    .nav__inner { height: 6.4rem; }
    .nav__brand { font-size: 1.8rem; gap: 0.8rem; }
    .nav__brand-img { height: 4rem; }
    .nav__logo { width: 3.6rem; height: 3.6rem; font-size: 1.6rem; }

    .hero { padding-top: 6.4rem; }
    .hero__content { padding: 3rem 0; }
    .page-hero { padding-top: 10rem; }

    /* stats — 2x2 tighter */
    .stats-banner { padding: 2.8rem 0; }
    .stats-banner__inner { gap: 1.6rem; }
    .stats-banner__item h3 { font-size: 2rem; }
    .stats-banner__item p { font-size: 1.2rem; }

    /* driven cards — stack single col */
    .driven__card { width: 100%; }
    .driven__wrap { padding-top: 4rem; padding-bottom: 4rem; }
    .driven__heading-row { margin-bottom: 3rem; }

    /* specialisms */
    .care-grid { gap: 1.2rem; }
    .care-item { padding: 1.4rem 1.6rem; gap: 1.2rem; }
    .care-item span { font-size: 1.4rem; }

    /* locations — single col on very small screens */
    .locations-row { grid-template-columns: 1fr; }
    .location-card { padding: 2.4rem 1.6rem; }

    .spec-grid { grid-template-columns: 1fr; }
    .location-card__icon { width: 5rem; height: 5rem; }

    /* testimonial */
    .testimonial__content blockquote { font-size: 1.5rem; padding-left: 1.6rem; border-left-width: 3px; }

    /* CTA */
    .cta-banner { padding: 5rem 0; }
    .cqc-banner h2 { font-size: 1.8rem; }

    /* values */
    .value-item { gap: 1.2rem; }
    .value-item__icon { width: 4rem; height: 4rem; min-width: 4rem; }
    .value-item__icon svg { width: 1.8rem; height: 1.8rem; }

    /* about page */
    .accreditations__inner { grid-template-columns: 1fr; }
    .spotlight__portrait img { width: 120px; height: 120px; }
    .principle-card__number { font-size: 4rem; }

    /* footer */
    .footer__main { padding: 5rem 0 3rem; }
    .footer__brand-img { height: 4.4rem; }
}
