:root {
    --hw-navy: #062235;
    --hw-navy-light: #0b3148;
    --hw-blue: #098ac4;
    --hw-cyan: #28b9d8;
    --hw-cyan-light: #dff7fc;
    --hw-sky: #eef9fc;
    --hw-white: #ffffff;
    --hw-text: #071d2c;
    --hw-muted: #5d7184;
    --hw-border: #d9e5eb;
    --hw-light: #f6f9fb;
    --hw-gold: #f6ae2d;
    --hw-shadow: 0 18px 50px rgba(6, 34, 53, 0.08);
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--hw-white);
    color: var(--hw-text);
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.hw-menu-open {
    overflow: hidden;
}

a {
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.hw-main {
    min-height: 60vh;
}

.hw-shell {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   NAVIGATION
========================================================= */

.hw-navbar {
    position: sticky;
    top: 0;
    z-index: 2000;
    width: 100%;
    background: rgba(6, 34, 53, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(14px);
}

.hw-nav-shell {
    width: min(1160px, calc(100% - 40px));
    height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.hw-nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--hw-white);
    flex-shrink: 0;
}

.hw-nav-brand:hover {
    color: var(--hw-white);
}

.hw-nav-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--hw-cyan);
    box-shadow: 0 0 25px rgba(40, 185, 216, 0.28);
}

.hw-nav-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hw-nav-logo-text {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hw-desktop-nav {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hw-nav-dropdown {
    position: relative;
}

.hw-nav-link {
    min-height: 46px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #e8f1f5;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
}

.hw-nav-link i {
    font-size: 10px;
    opacity: 0.75;
}

.hw-nav-link:hover {
    color: var(--hw-white);
    background: rgba(255, 255, 255, 0.07);
}


/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.hw-dropdown-panel {
    position: absolute;
    top: calc(100% + 11px);
    left: 50%;
    min-width: 270px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 7px);
    background: var(--hw-white);
    border: 1px solid var(--hw-border);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(6, 34, 53, 0.18);
    transition:
        opacity 0.18s ease,
        visibility 0.18s ease,
        transform 0.18s ease;
}

.hw-dropdown-panel::before {
    content: "";
    position: absolute;
    top: -13px;
    left: 0;
    right: 0;
    height: 15px;
}

.hw-nav-dropdown:hover .hw-dropdown-panel,
.hw-nav-dropdown:focus-within .hw-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.hw-dropdown-overview {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    color: var(--hw-text);
    text-decoration: none;
    border-radius: 10px;
    background: var(--hw-sky);
}

.hw-dropdown-overview strong {
    font-size: 14px;
}

.hw-dropdown-overview span {
    color: var(--hw-muted);
    font-size: 12px;
}

.hw-dropdown-overview:hover {
    color: var(--hw-blue);
}

.hw-dropdown-category {
    margin: 14px 10px 5px;
    color: #8798a7;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hw-dropdown-link {
    display: block;
    padding: 8px 10px;
    color: #344a5c;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
}

.hw-dropdown-link:hover {
    color: var(--hw-blue);
    background: #f3f9fb;
}

.hw-dropdown-empty {
    display: block;
    padding: 12px 10px;
    color: #91a0ab;
    font-size: 13px;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.hw-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.06);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.hw-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--hw-white);
    border-radius: 100px;
}

.hw-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 2100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(2, 17, 27, 0.62);
    backdrop-filter: blur(4px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.hw-mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hw-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2200;
    width: min(390px, 88vw);
    height: 100vh;
    background: var(--hw-white);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.18);
    transform: translateX(105%);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hw-mobile-drawer.is-open {
    transform: translateX(0);
}

.hw-mobile-header {
    min-height: 78px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--hw-white);
    background: var(--hw-navy);
}

.hw-mobile-title {
    font-size: 18px;
    font-weight: 800;
}

.hw-mobile-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hw-white);
    background: rgba(255, 255, 255, 0.08);
}

.hw-mobile-body {
    height: calc(100vh - 78px);
    overflow-y: auto;
    padding: 12px;
}

.hw-mobile-main-link {
    flex: 1;
    display: block;
    padding: 15px 13px;
    color: var(--hw-text);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.hw-mobile-main-link:hover {
    color: var(--hw-blue);
}

.hw-mobile-accordion {
    border-top: 1px solid #edf2f5;
}

.hw-mobile-accordion-header {
    display: flex;
    align-items: center;
}

.hw-mobile-accordion-button {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border: 0;
    border-radius: 9px;
    color: var(--hw-blue);
    background: #eef8fc;
}

.hw-mobile-accordion-content {
    display: none;
    margin-bottom: 10px;
    padding: 8px;
    background: #f7fafb;
    border-radius: 11px;
}

.hw-mobile-accordion.is-open .hw-mobile-accordion-content {
    display: block;
}

.hw-mobile-overview-link,
.hw-mobile-service-link {
    display: block;
    padding: 10px;
    color: #354b5d;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
}

.hw-mobile-overview-link {
    color: var(--hw-blue);
    font-weight: 800;
}

.hw-mobile-overview-link:hover,
.hw-mobile-service-link:hover {
    background: var(--hw-white);
    color: var(--hw-blue);
}

.hw-mobile-category {
    padding: 13px 10px 5px;
    color: #8999a5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hw-mobile-empty {
    display: block;
    padding: 10px;
    color: #8d9ca7;
    font-size: 13px;
}


/* =========================================================
   GENERAL WEBSITE SECTIONS
========================================================= */

.healthways-home {
    overflow: hidden;
}

.hw-section {
    padding: 90px 0;
}

.hw-eyebrow {
    display: block;
    margin-bottom: 11px;
    color: var(--hw-blue);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.hw-eyebrow-light {
    color: #7ae1f1;
}

.hw-section-heading {
    max-width: 790px;
    margin-bottom: 42px;
}

.hw-section-heading-centred {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hw-section-heading h2,
.hw-difference-content h2,
.hw-final-cta h2,
.hw-contact-strip h2 {
    margin: 0;
    color: var(--hw-navy);
    font-size: clamp(34px, 4.1vw, 51px);
    line-height: 1.06;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.hw-section-heading p {
    max-width: 720px;
    margin: 17px 0 0;
    color: var(--hw-muted);
    font-size: 16px;
    line-height: 1.7;
}

.hw-section-heading-centred p {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   BUTTONS
========================================================= */

.hw-button {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.hw-button-primary {
    color: var(--hw-white);
    background: var(--hw-cyan);
    box-shadow: 0 10px 28px rgba(40, 185, 216, 0.22);
}

.hw-button-primary:hover {
    color: var(--hw-white);
    background: #16a9ca;
    transform: translateY(-2px);
}

.hw-button-ghost {
    color: var(--hw-white);
    border-color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(6px);
}

.hw-button-ghost:hover {
    color: var(--hw-navy);
    background: var(--hw-white);
}


/* =========================================================
   HOME HERO
========================================================= */

.hw-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    color: var(--hw-white);
    background-image:
        linear-gradient(
            90deg,
            rgba(2, 27, 43, 0.94) 0%,
            rgba(3, 40, 62, 0.78) 38%,
            rgba(3, 39, 61, 0.3) 70%,
            rgba(2, 27, 43, 0.13) 100%
        ),
        url("../img/_DSC5903 (1).jpg");
    background-size: cover;
    background-position: center 45%;
}

.hw-hero-content {
    max-width: 610px;
    padding: 105px 0 145px;
}

.hw-hero h1 {
    max-width: 650px;
    margin: 0;
    color: var(--hw-white);
    font-size: clamp(50px, 6vw, 78px);
    line-height: 0.97;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.hw-hero p {
    max-width: 590px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.91);
    font-size: 18px;
    line-height: 1.65;
}

.hw-hero-actions {
    margin-top: 31px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}


/* =========================================================
   HOME STATS
========================================================= */

.hw-stats-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -58px;
}

.hw-stats {
    width: min(1060px, calc(100% - 40px));
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--hw-border);
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(6, 34, 53, 0.13);
}

.hw-stat {
    position: relative;
    padding: 7px 25px;
    text-align: center;
}

.hw-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8%;
    right: 0;
    width: 1px;
    height: 84%;
    background: var(--hw-border);
}

.hw-stat strong {
    display: block;
    color: var(--hw-blue);
    font-size: 27px;
    line-height: 1;
    font-weight: 900;
}

.hw-stat span {
    display: block;
    max-width: 190px;
    margin: 9px auto 0;
    color: var(--hw-muted);
    font-size: 12px;
    line-height: 1.45;
}


/* =========================================================
   TRUST
========================================================= */

.hw-trust-section {
    padding: 38px 0 50px;
}

.hw-trust-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #385069;
    font-size: 13px;
}

.hw-trust-since {
    padding: 6px 11px;
    color: var(--hw-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    border: 1px solid #bfe8f1;
    border-radius: 999px;
    background: #eaf8fb;
}

.hw-trust-items {
    margin-top: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 45px;
}

.hw-trust-items > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #526980;
    font-size: 12px;
    font-weight: 700;
}

.hw-trust-icon {
    color: var(--hw-blue);
    font-size: 22px;
}


/* =========================================================
   FEATURES
========================================================= */

.hw-why-section {
    background: #f3f8fa;
}

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

.hw-feature-card {
    overflow: hidden;
    position: relative;
    min-width: 0;
    background: var(--hw-white);
    border: 1px solid var(--hw-border);
    border-radius: 18px;
    box-shadow: 0 13px 35px rgba(6, 34, 53, 0.05);
}

.hw-feature-image {
    height: 165px;
    background-size: cover;
    background-position: center;
}

.hw-feature-image-one {
    background-image: url("../img/_DSC5871.jpg");
}

.hw-feature-image-two {
    background-image: url("../img/Screenshot 2025-11-17 122842.png");
}

.hw-feature-image-three {
    background-image: url("../img/Copy of 20251106_125156.jpg");
}

.hw-feature-image-four {
    background-image: url("../img/_DSC5917.jpg");
}

.hw-feature-content {
    position: relative;
    padding: 31px 20px 23px;
}

.hw-feature-icon {
    position: absolute;
    top: -24px;
    left: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--hw-white);
    border-radius: 50%;
    color: var(--hw-white);
    background: var(--hw-cyan);
    font-size: 20px;
}

.hw-feature-card h3 {
    margin: 0 0 8px;
    color: var(--hw-navy);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.hw-feature-card p {
    margin: 0;
    color: var(--hw-muted);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   HOME PROGRAMS
========================================================= */

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

.hw-program-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--hw-white);
    border: 1px solid var(--hw-border);
    border-radius: 20px;
    box-shadow: var(--hw-shadow);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.hw-program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(6, 34, 53, 0.12);
}

.hw-program-image {
    position: relative;
    width: 100%;
    height: 225px;
    overflow: hidden;
    background: #eef5f8;
}

.hw-program-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.hw-program-card:hover .hw-program-image img {
    transform: scale(1.035);
}

.hw-program-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #91a7b5;
    background: linear-gradient(135deg, #f3f8fa 0%, #e8f3f7 100%);
    font-size: 42px;
}

.hw-program-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hw-program-content h3 {
    margin: 0;
    color: var(--hw-navy);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.hw-program-content p {
    flex: 1;
    margin: 12px 0 24px;
    color: var(--hw-muted);
    font-size: 14px;
    line-height: 1.65;
}

.hw-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--hw-blue);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.hw-text-link:hover {
    color: #006fa6;
    gap: 11px;
}


/* =========================================================
   HEALTHWAYS DIFFERENCE
========================================================= */

.hw-difference-background {
    background: #eaf8fb;
}

.hw-difference-card {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    overflow: hidden;
    min-height: 500px;
    background: var(--hw-white);
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(6, 34, 53, 0.09);
}

.hw-difference-image {
    min-height: 500px;
    background-image: url("../img/_DSC5875.jpg");
    background-size: cover;
    background-position: center;
}

.hw-difference-content {
    padding: 62px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hw-difference-content h2 {
    max-width: 480px;
}

.hw-difference-content > p {
    margin: 23px 0 0;
    color: var(--hw-muted);
    font-size: 16px;
    line-height: 1.8;
}

.hw-check-list {
    margin: 29px 0 0;
    padding: 0;
    list-style: none;
}

.hw-check-list li {
    margin: 0 0 18px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    color: #41586c;
    font-size: 14px;
    line-height: 1.6;
}

.hw-check-list li > span {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hw-blue);
    border-radius: 50%;
    background: #ddf5fa;
}


/* =========================================================
   HOME LOCATIONS
========================================================= */

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

.hw-location-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 22px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--hw-shadow);
}

.hw-location-card-1 {
    background-image: url("../img/Copy of 20251106_125156.jpg");
}

.hw-location-card-2 {
    background-image: url("../img/IMG_7765.jpg");
}

.hw-location-card-3 {
    background-image: url("../img/IMG_7790.jpg");
}

.hw-location-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4, 35, 53, 0.97) 0%,
            rgba(5, 53, 78, 0.88) 50%,
            rgba(5, 53, 78, 0.48) 100%
        );
}

.hw-location-content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 34px;
    color: var(--hw-white);
}

.hw-location-content h3 {
    margin: 0 0 23px;
    color: var(--hw-white);
    font-size: 27px;
    font-weight: 800;
}

.hw-location-detail {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.93);
    font-size: 14px;
    line-height: 1.5;
}

.hw-location-detail i {
    margin-top: 2px;
    color: #66e5f5;
    font-size: 17px;
}

.hw-location-services {
    margin: 27px 0;
}

.hw-location-label {
    display: block;
    margin-bottom: 10px;
    color: #8fe8f3;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hw-location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.hw-location-tags span {
    padding: 7px 11px;
    color: var(--hw-white);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(5px);
}


/* =========================================================
   HOME TESTIMONIALS
========================================================= */

.hw-testimonials-section {
    position: relative;
    overflow: hidden;
    background: var(--hw-white);
}

.hw-testimonials-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    width: 620px;
    height: 360px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(40, 185, 216, 0.055);
    filter: blur(20px);
    pointer-events: none;
}

.hw-testimonials-section .hw-shell {
    position: relative;
    z-index: 1;
}

.hw-testimonials-section .hw-section-heading {
    margin-bottom: 45px;
}

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

.hw-testimonial-card {
    position: relative;
    min-width: 0;
    min-height: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: var(--hw-white);
    border: 1px solid var(--hw-border);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(6, 34, 53, 0.06);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.hw-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: #b9dfe8;
    box-shadow: 0 21px 48px rgba(6, 34, 53, 0.1);
}

.hw-testimonial-top {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.hw-testimonial-quote-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hw-blue);
    background: #e6f7fb;
    border: 1px solid #caebf2;
    border-radius: 13px;
    font-size: 23px;
}

.hw-testimonial-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--hw-gold);
    font-size: 14px;
}

.hw-testimonial-card blockquote {
    flex: 1;
    margin: 0;
    padding: 0;
    color: #31495c;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
}

.hw-testimonial-author {
    margin-top: 28px;
    padding-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #e5edf1;
}

.hw-testimonial-avatar {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hw-blue);
    background: var(--hw-cyan-light);
    border: 1px solid #c3eaf2;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
}

.hw-testimonial-author > div {
    min-width: 0;
}

.hw-testimonial-author strong {
    display: block;
    color: var(--hw-navy);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 850;
}

.hw-testimonial-author div span {
    display: block;
    margin-top: 3px;
    color: #8294a1;
    font-size: 11px;
    line-height: 1.4;
}


/* =========================================================
   RECOGNITION
========================================================= */

.hw-recognition-section {
    background: #f3f8fa;
}

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

.hw-recognition-card {
    min-width: 0;
    padding: 29px 25px;
    text-align: center;
    background: var(--hw-white);
    border: 1px solid var(--hw-border);
    border-radius: 18px;
    box-shadow: 0 13px 35px rgba(6, 34, 53, 0.04);
}

.hw-recognition-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hw-blue);
    background: #e7f8fc;
    border: 1px solid #ccecf3;
    border-radius: 50%;
    font-size: 23px;
}

.hw-recognition-card strong {
    display: block;
    color: var(--hw-navy);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
}

.hw-recognition-card p {
    margin: 11px 0 0;
    color: var(--hw-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.hw-process-section {
    padding-top: 90px;
    padding-bottom: 82px;
}

.hw-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.hw-process-item {
    text-align: center;
}

.hw-process-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hw-blue);
    background: #e7f8fc;
    border: 1px solid #ccecf3;
    border-radius: 50%;
    font-size: 26px;
}

.hw-process-step {
    display: block;
    margin-bottom: 7px;
    color: var(--hw-cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hw-process-item h3 {
    margin: 0;
    color: var(--hw-navy);
    font-size: 20px;
    font-weight: 800;
}

.hw-process-item p {
    max-width: 225px;
    margin: 9px auto 0;
    color: var(--hw-muted);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   FINAL CTA
========================================================= */

.hw-final-cta {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    text-align: center;
    background-image: url("../img/_DSC5881.jpg");
    background-position: center;
    background-size: cover;
}

.hw-final-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 68, 96, 0.77);
}

.hw-final-cta-content {
    position: relative;
    z-index: 1;
    padding: 75px 20px;
}

.hw-final-cta h2 {
    color: var(--hw-white);
    font-size: clamp(37px, 5vw, 57px);
}

.hw-final-cta p {
    max-width: 650px;
    margin: 19px auto 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.7;
}

.hw-final-cta-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
}


/* =========================================================
   CONTACT
========================================================= */

.hw-contact-strip {
    padding: 55px 0;
    color: var(--hw-white);
    background: var(--hw-navy);
}

.hw-contact-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hw-contact-strip h2 {
    margin-top: 0;
    color: var(--hw-white);
    font-size: 35px;
}

.hw-contact-strip p {
    margin: 12px 0 0;
    color: #a9becb;
    font-size: 14px;
}


/* =========================================================
   SHARED PUBLIC PAGE BREADCRUMBS
========================================================= */

.hw-page-breadcrumb {
    padding: 26px 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: #8a9aa6;
    font-size: 12px;
    font-weight: 600;
}

.hw-page-breadcrumb i {
    font-size: 9px;
}

.hw-page-breadcrumb-link {
    color: #617788;
    text-decoration: none;
}

.hw-page-breadcrumb-link:hover {
    color: var(--hw-blue);
}

.hw-page-breadcrumb-current {
    color: var(--hw-navy);
    font-weight: 800;
}


/* =========================================================
   DEPARTMENT PAGE
========================================================= */

.hw-department-page {
    background: var(--hw-white);
}

.hw-department-hero {
    padding: 4px 0 76px;
}

.hw-department-hero-card {
    min-height: 480px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #f5fbfd 0%,
        #edf8fb 100%
    );
    border: 1px solid var(--hw-border);
    border-radius: 26px;
    box-shadow: 0 24px 65px rgba(6, 34, 53, 0.09);
}

.hw-department-hero-copy {
    padding: 65px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hw-department-label,
.hw-service-category {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    color: var(--hw-blue);
    background: #dcf5fa;
    border: 1px solid #c1eaf2;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hw-department-hero-copy h1 {
    max-width: 610px;
    margin: 20px 0 0;
    color: var(--hw-navy);
    font-size: clamp(43px, 5vw, 67px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.hw-department-hero-copy > p {
    max-width: 600px;
    margin: 23px 0 0;
    color: var(--hw-muted);
    font-size: 17px;
    line-height: 1.75;
}

.hw-department-empty-copy {
    font-style: italic;
}

.hw-department-hero-actions {
    margin-top: 31px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.hw-department-secondary-button,
.hw-service-back-button {
    min-height: 48px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--hw-navy);
    border: 1px solid var(--hw-border);
    border-radius: 999px;
    background: var(--hw-white);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.hw-department-secondary-button:hover,
.hw-service-back-button:hover {
    color: var(--hw-blue);
    border-color: #aedce8;
    box-shadow: 0 8px 24px rgba(6, 34, 53, 0.08);
}

.hw-department-hero-image {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    background: #e7f2f6;
}

.hw-department-hero-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: block;
    object-fit: cover;
}

.hw-department-image-placeholder,
.hw-service-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: #8ba2b0;
    background:
        linear-gradient(
            135deg,
            #eff7f9,
            #dfeef3
        );
}

.hw-department-image-placeholder i,
.hw-service-image-placeholder i {
    font-size: 55px;
}

.hw-department-image-placeholder span,
.hw-service-image-placeholder span {
    font-size: 13px;
    font-weight: 700;
}

.hw-department-section {
    padding: 84px 0 95px;
    background: #f6fafb;
}

.hw-department-section-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.hw-department-section-heading h2 {
    margin: 0;
    color: var(--hw-navy);
    font-size: clamp(34px, 4vw, 49px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 850;
}

.hw-department-section-heading > p {
    max-width: 700px;
    margin: 16px 0 0;
    color: var(--hw-muted);
    font-size: 15px;
    line-height: 1.75;
}

.hw-category-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hw-category-card {
    padding: 30px;
    background: var(--hw-white);
    border: 1px solid var(--hw-border);
    border-radius: 22px;
    box-shadow: 0 13px 38px rgba(6, 34, 53, 0.045);
}

.hw-category-header {
    margin-bottom: 25px;
    padding-bottom: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    border-bottom: 1px solid #e7eef2;
}

.hw-category-header > div:first-child {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.hw-category-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hw-blue);
    background: #e6f7fb;
    border-radius: 12px;
    font-size: 18px;
}

.hw-category-header h3 {
    margin: 1px 0 0;
    color: var(--hw-navy);
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.hw-category-header p {
    max-width: 680px;
    margin: 7px 0 0;
    color: var(--hw-muted);
    font-size: 13px;
    line-height: 1.65;
}

.hw-category-count {
    flex-shrink: 0;
    padding: 7px 11px;
    color: #567183;
    background: #f0f6f8;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

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

.hw-department-service-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #f8fbfc;
    border: 1px solid #dce8ed;
    border-radius: 16px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.hw-department-service-card:hover {
    transform: translateY(-3px);
    border-color: #bce2ea;
    box-shadow: 0 13px 32px rgba(6, 34, 53, 0.08);
}

.hw-department-service-image {
    height: 155px;
    overflow: hidden;
    background: #e8f2f5;
}

.hw-department-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hw-department-service-card:hover .hw-department-service-image img {
    transform: scale(1.035);
}

.hw-department-service-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.hw-department-service-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.hw-department-service-top h4 {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 800;
}

.hw-department-service-title {
    color: var(--hw-navy);
    text-decoration: none;
}

.hw-department-service-title:hover {
    color: var(--hw-blue);
}

.hw-department-service-price {
    flex-shrink: 0;
    color: var(--hw-blue);
    font-size: 14px;
    font-weight: 900;
}

.hw-department-service-description {
    flex: 1;
    margin: 12px 0 19px;
    color: var(--hw-muted);
    font-size: 12px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hw-department-service-footer {
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    border-top: 1px solid #e1e9ed;
}

.hw-duration-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 9px;
    color: #35768f;
    background: #e5f6fa;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 750;
}

.hw-service-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--hw-blue);
    font-size: 11px;
    font-weight: 850;
    text-decoration: none;
}

.hw-service-detail-link:hover {
    color: #006fa6;
    gap: 9px;
}

.hw-department-empty-state {
    min-height: 74px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #647c8d;
    background: #f4f9fa;
    border: 1px dashed #cbdde3;
    border-radius: 13px;
    font-size: 13px;
}

.hw-department-empty-large {
    min-height: 150px;
}

.hw-department-page-sections,
.hw-service-page-sections {
    position: relative;
}

.hw-department-locations {
    padding: 90px 0;
    color: var(--hw-white);
    background: var(--hw-navy);
}

.hw-department-locations .hw-department-section-heading h2 {
    color: var(--hw-white);
}

.hw-department-locations .hw-department-section-heading > p {
    color: #a9becb;
}

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

.hw-department-location-card {
    position: relative;
    padding: 30px;
    overflow: hidden;
    background: #0b3047;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 19px;
}

.hw-department-location-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    top: -90px;
    right: -65px;
    border-radius: 50%;
    background: rgba(40, 185, 216, 0.08);
}

.hw-department-location-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7ae1f1;
    background: rgba(40, 185, 216, 0.12);
    border-radius: 13px;
    font-size: 19px;
}

.hw-department-location-card h3 {
    margin: 20px 0;
    color: var(--hw-white);
    font-size: 21px;
    font-weight: 850;
}

.hw-department-location-detail {
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #b6c9d4;
    font-size: 13px;
    line-height: 1.6;
}

.hw-department-location-detail i {
    margin-top: 2px;
    color: #63d6e9;
}

.hw-department-call-link {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #80e4f2;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.hw-department-call-link:hover {
    color: var(--hw-white);
    gap: 10px;
}

.hw-department-empty-dark {
    color: #adc3cf;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.hw-department-final-cta {
    padding: 74px 0;
    background: #eef9fc;
}

.hw-department-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.hw-department-final-cta h2 {
    max-width: 650px;
    margin: 0;
    color: var(--hw-navy);
    font-size: clamp(32px, 4vw, 47px);
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 850;
}

.hw-department-final-cta p {
    max-width: 640px;
    margin: 15px 0 0;
    color: var(--hw-muted);
    font-size: 14px;
    line-height: 1.7;
}

.hw-department-final-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 11px;
}

.hw-department-home-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #607788;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.hw-department-home-link:hover {
    color: var(--hw-blue);
}


/* =========================================================
   SERVICE PAGE
========================================================= */

.hw-service-page {
    background: var(--hw-white);
}

.hw-service-hero-section {
    padding: 4px 0 76px;
}

.hw-service-hero {
    min-height: 445px;
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #f7fbfd 0%,
        #edf8fb 100%
    );
    border: 1px solid var(--hw-border);
    border-radius: 26px;
    box-shadow: 0 24px 65px rgba(6, 34, 53, 0.09);
}

.hw-service-hero-text {
    padding: 56px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hw-service-hero-text h1 {
    max-width: 610px;
    margin: 20px 0 0;
    color: var(--hw-navy);
    font-size: clamp(40px, 4.3vw, 58px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.hw-service-intro {
    max-width: 610px;
    margin: 21px 0 0;
    color: var(--hw-muted);
    font-size: 16px;
    line-height: 1.75;
}

.hw-service-meta {
    margin-top: 26px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 12px;
}

.hw-service-meta-item {
    min-width: 145px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #d7e5ea;
    border-radius: 13px;
}

.hw-service-meta-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hw-blue);
    background: #e7f8fc;
    border-radius: 9px;
}

.hw-service-meta-label {
    display: block;
    margin-bottom: 3px;
    color: #8397a5;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hw-service-meta-item strong {
    color: var(--hw-navy);
    font-size: 15px;
    font-weight: 850;
}

.hw-service-actions {
    margin-top: 27px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hw-service-hero-image {
    position: relative;
    min-height: 445px;
    overflow: hidden;
    background: #e5f0f4;
}

.hw-service-hero-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    display: block;
}

.hw-service-about-section {
    padding: 60px 0 78px;
}

.hw-service-about {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 70px;
    align-items: start;
}

.hw-service-about-heading h2 {
    margin: 0;
    color: var(--hw-navy);
    font-size: clamp(31px, 3.7vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 850;
}

.hw-service-about-content {
    padding: 29px 32px;
    color: #455d70;
    background: #f5f9fa;
    border-left: 4px solid var(--hw-cyan);
    border-radius: 0 16px 16px 0;
}

.hw-service-description {
    font-size: 15px;
    line-height: 1.85;
}

.hw-service-empty-text {
    color: #7d909c;
}

.hw-service-cta {
    padding: 78px 0;
    color: var(--hw-white);
    background:
        linear-gradient(
            135deg,
            #062235 0%,
            #0a425e 100%
        );
}

.hw-service-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}

.hw-service-cta-copy h2 {
    margin: 0;
    color: var(--hw-white);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 850;
}

.hw-service-cta-copy p {
    max-width: 680px;
    margin: 16px 0 0;
    color: #afc6d2;
    font-size: 14px;
    line-height: 1.75;
}

.hw-service-cta-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   FOOTER
========================================================= */

.hw-footer {
    color: var(--hw-white);
    background: #041a29;
}

.hw-footer-main {
    padding: 68px 0 55px;
}

.hw-footer-shell {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
    gap: 55px;
}

.hw-footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--hw-white);
    font-size: 21px;
    font-weight: 800;
}

.hw-footer-brand img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.hw-footer-brand-column > p {
    max-width: 340px;
    margin: 20px 0;
    color: #9fb4c1;
    font-size: 13px;
    line-height: 1.8;
}

.hw-footer-socials {
    display: flex;
    gap: 9px;
}

.hw-footer-socials a {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hw-white);
    text-decoration: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.hw-footer-socials a:hover {
    background: var(--hw-cyan);
}

.hw-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.hw-footer-column h3 {
    margin: 0 0 8px;
    color: var(--hw-white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hw-footer-column a {
    color: #9fb4c1;
    font-size: 13px;
    text-decoration: none;
}

.hw-footer-column a:hover {
    color: var(--hw-white);
}

.hw-footer-column p {
    margin: 0;
    color: #9fb4c1;
    font-size: 13px;
    line-height: 1.7;
}

.hw-footer-column .hw-footer-button {
    margin-top: 6px;
    padding: 10px 15px;
    color: var(--hw-white);
    font-weight: 700;
    border-radius: 999px;
    background: var(--hw-blue);
}

.hw-footer-column .hw-footer-button:hover {
    background: var(--hw-cyan);
}

.hw-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hw-footer-bottom-inner {
    width: min(1160px, calc(100% - 40px));
    min-height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #708b9b;
    font-size: 11px;
}

.hw-footer-bottom-inner div {
    display: flex;
    gap: 20px;
}

.hw-footer-bottom a {
    color: #708b9b;
    text-decoration: none;
}

.hw-footer-bottom a:hover {
    color: var(--hw-white);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .hw-feature-grid,
    .hw-recognition-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hw-department-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hw-department-hero-copy,
    .hw-service-hero-text {
        padding: 50px 42px;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 900px) {

    .hw-desktop-nav {
        display: none;
    }

    .hw-mobile-toggle {
        display: flex;
    }

    .hw-hero {
        min-height: 600px;
        background-position: 62% center;
    }

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

    .hw-stat:nth-child(2)::after {
        display: none;
    }

    .hw-stat {
        padding: 17px 20px;
    }

    .hw-stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--hw-border);
    }

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

    .hw-difference-card {
        grid-template-columns: 1fr;
    }

    .hw-difference-image {
        min-height: 390px;
    }

    .hw-location-grid {
        grid-template-columns: 1fr;
    }

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

    .hw-testimonial-card:last-child {
        grid-column: 1 / -1;
    }

    .hw-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 50px;
    }

    .hw-department-hero-card,
    .hw-service-hero {
        grid-template-columns: 1fr;
    }

    .hw-department-hero-image,
    .hw-service-hero-image {
        min-height: 360px;
    }

    .hw-department-location-grid {
        grid-template-columns: 1fr;
    }

    .hw-service-about {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hw-service-cta-inner,
    .hw-department-final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hw-department-final-actions {
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .hw-shell {
        width: min(100% - 28px, 1160px);
    }

    .hw-nav-shell {
        width: calc(100% - 28px);
        height: 68px;
    }

    .hw-nav-logo-text {
        font-size: 19px;
    }

    .hw-nav-logo-mark {
        width: 37px;
        height: 37px;
    }

    .hw-section {
        padding: 67px 0;
    }

    .hw-hero {
        min-height: 590px;
        background-position: 65% center;
    }

    .hw-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(3, 28, 44, 0.16);
    }

    .hw-hero-content {
        position: relative;
        z-index: 1;
        padding: 90px 0 125px;
    }

    .hw-hero h1 {
        font-size: clamp(45px, 13vw, 60px);
    }

    .hw-hero p {
        font-size: 16px;
    }

    .hw-stats-wrapper {
        margin-top: -46px;
    }

    .hw-stats {
        width: calc(100% - 28px);
        padding: 12px;
        border-radius: 17px;
    }

    .hw-stat strong {
        font-size: 22px;
    }

    .hw-stat span {
        font-size: 11px;
    }

    .hw-trust-section {
        padding-top: 32px;
    }

    .hw-trust-rating {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hw-trust-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hw-trust-items > div {
        justify-content: center;
        text-align: center;
    }

    .hw-feature-grid,
    .hw-program-grid,
    .hw-recognition-grid,
    .hw-process-grid {
        grid-template-columns: 1fr;
    }

    .hw-program-image {
        height: 215px;
    }

    .hw-difference-image {
        min-height: 300px;
    }

    .hw-difference-content {
        padding: 38px 26px;
    }

    .hw-location-content {
        padding: 27px 23px;
    }


    /* Testimonials */

    .hw-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hw-testimonial-card,
    .hw-testimonial-card:last-child {
        grid-column: auto;
    }

    .hw-testimonial-card {
        min-height: 0;
        padding: 25px;
        border-radius: 17px;
    }

    .hw-testimonial-card blockquote {
        font-size: 15px;
    }

    .hw-testimonial-top {
        margin-bottom: 20px;
    }

    .hw-testimonial-author {
        margin-top: 24px;
        padding-top: 19px;
    }


    .hw-final-cta {
        min-height: 390px;
    }

    .hw-contact-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hw-page-breadcrumb {
        padding: 19px 0 14px;
        font-size: 11px;
    }

    .hw-department-hero {
        padding-bottom: 52px;
    }

    .hw-department-hero-card {
        border-radius: 19px;
    }

    .hw-department-hero-copy {
        padding: 39px 25px;
    }

    .hw-department-hero-copy h1 {
        font-size: clamp(38px, 11vw, 50px);
    }

    .hw-department-hero-copy > p {
        font-size: 15px;
    }

    .hw-department-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hw-department-hero-actions .hw-button,
    .hw-department-secondary-button {
        width: 100%;
    }

    .hw-department-hero-image {
        min-height: 280px;
    }

    .hw-department-section {
        padding: 65px 0;
    }

    .hw-category-card {
        padding: 21px;
        border-radius: 17px;
    }

    .hw-category-header {
        flex-direction: column;
    }

    .hw-category-count {
        margin-left: 59px;
    }

    .hw-department-service-grid {
        grid-template-columns: 1fr;
    }

    .hw-department-service-image {
        height: 180px;
    }

    .hw-department-service-footer {
        align-items: flex-end;
    }

    .hw-department-locations {
        padding: 67px 0;
    }

    .hw-department-location-card {
        padding: 25px;
    }

    .hw-department-final-cta {
        padding: 60px 0;
    }

    .hw-department-final-actions,
    .hw-department-final-actions .hw-button {
        width: 100%;
    }

    .hw-department-home-link {
        align-self: flex-start;
    }

    .hw-service-hero-section {
        padding-bottom: 53px;
    }

    .hw-service-hero {
        border-radius: 19px;
    }

    .hw-service-hero-text {
        padding: 39px 25px;
    }

    .hw-service-hero-text h1 {
        font-size: clamp(38px, 11vw, 49px);
    }

    .hw-service-intro {
        font-size: 15px;
    }

    .hw-service-meta {
        align-items: stretch;
        flex-direction: column;
    }

    .hw-service-meta-item {
        width: 100%;
    }

    .hw-service-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hw-service-actions .hw-button,
    .hw-service-back-button {
        width: 100%;
    }

    .hw-service-hero-image {
        min-height: 280px;
    }

    .hw-service-about-section {
        padding: 54px 0 64px;
    }

    .hw-service-about-content {
        padding: 24px;
    }

    .hw-service-cta {
        padding: 62px 0;
    }

    .hw-service-cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hw-service-cta-actions .hw-button {
        width: 100%;
    }

    .hw-footer-shell {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hw-footer-bottom-inner {
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   SERVICE PAGE OVERRIDES
========================================================= */

.hw-service-page {
    width: 100%;
    background: #ffffff;
}

.hw-service-page .hw-service-hero-section {
    padding: 10px 0 62px;
}

.hw-service-page .hw-service-hero {
    width: 100%;
    min-height: 445px;
    display: grid !important;
    grid-template-columns:
        minmax(0, 1.06fr)
        minmax(0, 0.94fr) !important;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #f7fbfd 0%,
            #edf8fb 100%
        );
    border: 1px solid #d9e5eb;
    border-radius: 26px;
    box-shadow:
        0 24px 65px rgba(6, 34, 53, 0.09);
}

.hw-service-page .hw-service-hero-text {
    min-width: 0;
    padding: 54px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hw-service-page .hw-service-category {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    color: #098ac4;
    background: #dcf5fa;
    border: 1px solid #c1eaf2;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hw-service-page .hw-service-hero-text h1 {
    max-width: 620px;
    margin: 20px 0 0;
    color: #062235;
    font-size: clamp(40px, 4.3vw, 58px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.hw-service-page .hw-service-intro {
    max-width: 610px;
    margin: 21px 0 0;
    color: #5d7184;
    font-size: 16px;
    line-height: 1.75;
}

.hw-service-page .hw-service-meta {
    margin-top: 25px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 12px;
}

.hw-service-page .hw-service-meta-item {
    min-width: 155px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d7e5ea;
    border-radius: 13px;
}

.hw-service-page .hw-service-meta-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #098ac4;
    background: #e7f8fc;
    border-radius: 9px;
    font-size: 16px;
}

.hw-service-page .hw-service-meta-label {
    display: block;
    margin-bottom: 3px;
    color: #8397a5;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hw-service-page .hw-service-meta-item strong {
    display: block;
    color: #062235;
    font-size: 15px;
    font-weight: 850;
}

.hw-service-page .hw-service-actions {
    margin-top: 27px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hw-service-page .hw-service-hero-image {
    position: relative;
    min-width: 0;
    min-height: 445px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #eaf5f8,
            #dcecf1
        );
}

.hw-service-page .hw-service-hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hw-service-page .hw-service-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 445px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 13px;
    color: #8098a6;
    background:
        radial-gradient(
            circle at center,
            #f8fcfd 0%,
            #e5f2f6 100%
        );
}

.hw-service-page .hw-service-image-placeholder i {
    font-size: 58px;
}

.hw-service-page .hw-service-image-placeholder span {
    font-size: 13px;
    font-weight: 700;
}

.hw-service-page .hw-service-about-section {
    padding: 60px 0 78px;
}

.hw-service-page .hw-service-about {
    display: grid !important;
    grid-template-columns:
        minmax(0, 0.75fr)
        minmax(0, 1.25fr);
    gap: 62px;
    align-items: start;
}

.hw-service-page .hw-service-about-heading h2 {
    margin: 0;
    color: #062235;
    font-size: clamp(31px, 3.7vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 850;
}

.hw-service-page .hw-service-about-content {
    padding: 29px 32px;
    color: #455d70;
    background: #f5f9fa;
    border-left: 4px solid #28b9d8;
    border-radius: 0 16px 16px 0;
}

.hw-service-page .hw-service-description {
    color: #455d70;
    font-size: 15px;
    line-height: 1.85;
}

.hw-service-page .hw-service-cta {
    padding: 78px 0;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #062235 0%,
            #0a425e 100%
        );
}

.hw-service-page .hw-service-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}

.hw-service-page .hw-service-cta-copy h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 850;
}

.hw-service-page .hw-service-cta-copy p {
    max-width: 680px;
    margin: 16px 0 0;
    color: #afc6d2;
    font-size: 14px;
    line-height: 1.75;
}

.hw-service-page .hw-service-cta-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   SERVICE PAGE RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .hw-service-page .hw-service-hero {
        grid-template-columns: 1fr !important;
    }

    .hw-service-page .hw-service-hero-image {
        min-height: 340px;
    }

    .hw-service-page .hw-service-image-placeholder {
        min-height: 340px;
    }

    .hw-service-page .hw-service-about {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    .hw-service-page .hw-service-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 650px) {

    .hw-service-page .hw-service-hero-section {
        padding-bottom: 48px;
    }

    .hw-service-page .hw-service-hero {
        border-radius: 19px;
    }

    .hw-service-page .hw-service-hero-text {
        padding: 39px 25px;
    }

    .hw-service-page .hw-service-hero-text h1 {
        font-size: clamp(36px, 10.5vw, 48px);
    }

    .hw-service-page .hw-service-intro {
        font-size: 15px;
    }

    .hw-service-page .hw-service-meta {
        flex-direction: column;
    }

    .hw-service-page .hw-service-meta-item {
        width: 100%;
    }

    .hw-service-page .hw-service-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hw-service-page .hw-service-actions .hw-button,
    .hw-service-page .hw-service-back-button {
        width: 100%;
    }

    .hw-service-page .hw-service-hero-image,
    .hw-service-page .hw-service-image-placeholder {
        min-height: 270px;
    }

    .hw-service-page .hw-service-about-section {
        padding: 52px 0 62px;
    }

    .hw-service-page .hw-service-about-content {
        padding: 24px;
    }

    .hw-service-page .hw-service-cta {
        padding: 62px 0;
    }

    .hw-service-page .hw-service-cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hw-service-page .hw-service-cta-actions .hw-button {
        width: 100%;
    }
}

/* =========================================================
   NEW DEPARTMENT LANDING PAGES
   Iteration 1
========================================================= */

.hw-department-page {
    --department-accent: var(--hw-cyan);
    --department-accent-dark: var(--hw-blue);
    --department-soft: #eaf8fb;

    width: 100%;
    overflow: hidden;
    background: var(--hw-white);
}


/* ---------------------------------------------------------
   Department theme variations
--------------------------------------------------------- */

.hw-department-theme-swim {
    --department-accent: #28b9d8;
    --department-accent-dark: #098ac4;
    --department-soft: #e8f8fc;
}

.hw-department-theme-fitness {
    --department-accent: #28b9d8;
    --department-accent-dark: #087fab;
    --department-soft: #eaf8fb;
}

.hw-department-theme-bowling {
    --department-accent: #28b9d8;
    --department-accent-dark: #098ac4;
    --department-soft: #eaf8fb;
}

.hw-department-theme-holiday {
    --department-accent: #28b9d8;
    --department-accent-dark: #098ac4;
    --department-soft: #edf9fb;
}

.hw-department-theme-creche {
    --department-accent: #28b9d8;
    --department-accent-dark: #098ac4;
    --department-soft: #edf9fb;
}

.hw-department-theme-hire {
    --department-accent: #28b9d8;
    --department-accent-dark: #098ac4;
    --department-soft: #edf9fb;
}


/* =========================================================
   HERO
========================================================= */

.hw-department-landing-hero {
    padding: 5px 0 78px;
}

.hw-department-landing-hero-card {
    position: relative;

    min-height: 560px;

    display: grid;
    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(0, 0.98fr);

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f6fbfd 0%,
            #eaf7fa 100%
        );

    border: 1px solid var(--hw-border);
    border-radius: 28px;

    box-shadow:
        0 26px 70px rgba(6, 34, 53, 0.11);
}

.hw-department-landing-hero-copy {
    position: relative;
    z-index: 2;

    min-width: 0;

    padding: 68px 62px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hw-department-landing-eyebrow {
    width: fit-content;

    padding: 9px 14px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--department-accent-dark);

    background: rgba(255, 255, 255, 0.82);

    border: 1px solid #c7e8ef;
    border-radius: 999px;

    box-shadow:
        0 6px 20px rgba(6, 34, 53, 0.04);

    font-size: 10px;
    line-height: 1;
    font-weight: 900;

    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hw-department-landing-eyebrow i {
    color: var(--department-accent);
    font-size: 13px;
}

.hw-department-landing-hero-copy h1 {
    max-width: 660px;

    margin: 23px 0 0;

    color: var(--hw-navy);

    font-size: clamp(45px, 5.2vw, 69px);
    line-height: 0.98;

    font-weight: 900;

    letter-spacing: -0.055em;
}

.hw-department-landing-intro {
    max-width: 620px;

    margin: 24px 0 0;

    color: #526b7d;

    font-size: 17px;
    line-height: 1.75;
}

.hw-department-landing-actions {
    margin-top: 31px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;
}

.hw-department-landing-actions .hw-button {
    gap: 8px;
}

.hw-department-landing-secondary {
    min-height: 48px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    color: var(--hw-navy);

    background: rgba(255, 255, 255, 0.84);

    border: 1px solid #ccdde4;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
}

.hw-department-landing-secondary:hover {
    color: var(--department-accent-dark);

    background: var(--hw-white);

    border-color: #abdce7;

    box-shadow:
        0 10px 28px rgba(6, 34, 53, 0.08);

    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   Hero mini stats
--------------------------------------------------------- */

.hw-department-hero-mini-stats {
    width: 100%;
    max-width: 610px;

    margin-top: 37px;
    padding-top: 25px;

    display: flex;
    align-items: stretch;

    border-top: 1px solid #d7e5ea;
}

.hw-department-hero-mini-stats > div {
    position: relative;

    flex: 1;

    min-width: 0;

    padding-right: 20px;
}

.hw-department-hero-mini-stats > div:not(:first-child) {
    padding-left: 20px;
}

.hw-department-hero-mini-stats > div:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 3px;
    right: 0;

    width: 1px;
    height: 39px;

    background: #d4e2e8;
}

.hw-department-hero-mini-stats strong {
    display: block;

    color: var(--department-accent-dark);

    font-size: 21px;
    line-height: 1;

    font-weight: 900;
}

.hw-department-hero-mini-stats span {
    display: block;

    margin-top: 7px;

    color: #718795;

    font-size: 10px;
    line-height: 1.35;

    font-weight: 750;
}


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

.hw-department-landing-hero-visual {
    position: relative;

    min-width: 0;
    min-height: 560px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #dcecf1,
            #cce4ea
        );
}

.hw-department-landing-hero-visual > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    margin: 0;
}

.hw-department-hero-image-shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(6, 34, 53, 0.02) 20%,
            rgba(6, 34, 53, 0.62) 100%
        );

    pointer-events: none;
}

.hw-department-hero-image-caption {
    position: absolute;

    left: 31px;
    right: 31px;
    bottom: 29px;

    z-index: 2;

    color: var(--hw-white);
}

.hw-department-hero-image-caption span {
    display: block;

    margin-bottom: 5px;

    color: #9deaf4;

    font-size: 10px;
    font-weight: 850;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hw-department-hero-image-caption strong {
    display: block;

    color: var(--hw-white);

    font-size: 22px;
    line-height: 1.2;

    font-weight: 850;
}

.hw-department-landing-placeholder {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 15px;

    color: #7793a2;

    background:
        radial-gradient(
            circle at 50% 45%,
            #f7fcfd 0%,
            #dcecf1 100%
        );
}

.hw-department-landing-placeholder i {
    font-size: 60px;
}

.hw-department-landing-placeholder span {
    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   SHARED LANDING HEADING
========================================================= */

.hw-department-landing-heading {
    max-width: 790px;

    margin-bottom: 43px;
}

.hw-department-landing-heading h2 {
    margin: 0;

    color: var(--hw-navy);

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.06;

    font-weight: 850;

    letter-spacing: -0.045em;
}

.hw-department-landing-heading > p {
    max-width: 720px;

    margin: 17px 0 0;

    color: var(--hw-muted);

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   BENEFITS
========================================================= */

.hw-department-benefits {
    padding: 88px 0 96px;

    background: var(--hw-white);
}

.hw-department-benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 19px;
}

.hw-department-benefit-card {
    min-width: 0;

    padding: 27px 24px 26px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfdfe 100%
        );

    border: 1px solid var(--hw-border);
    border-radius: 18px;

    box-shadow:
        0 12px 34px rgba(6, 34, 53, 0.045);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.hw-department-benefit-card:hover {
    transform: translateY(-4px);

    border-color: #b9dfe8;

    box-shadow:
        0 18px 42px rgba(6, 34, 53, 0.085);
}

.hw-department-benefit-icon {
    width: 49px;
    height: 49px;

    margin-bottom: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--department-accent-dark);

    background: var(--department-soft);

    border: 1px solid #ccebf1;
    border-radius: 14px;

    font-size: 20px;
}

.hw-department-benefit-card h3 {
    margin: 0;

    color: var(--hw-navy);

    font-size: 17px;
    line-height: 1.35;

    font-weight: 850;
}

.hw-department-benefit-card p {
    margin: 10px 0 0;

    color: var(--hw-muted);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   PROGRAMS / SERVICES
========================================================= */

.hw-department-programs {
    padding: 92px 0 100px;

    background: #f4f8fa;

    border-top: 1px solid #e9f0f3;
}

.hw-department-category-list {
    display: flex;
    flex-direction: column;

    gap: 28px;
}

.hw-department-category {
    padding: 30px;

    background: var(--hw-white);

    border: 1px solid var(--hw-border);
    border-radius: 22px;

    box-shadow:
        0 14px 38px rgba(6, 34, 53, 0.045);
}

.hw-department-category-heading {
    margin-bottom: 26px;
    padding-bottom: 23px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;

    border-bottom: 1px solid #e5edf1;
}

.hw-department-category-heading-main {
    min-width: 0;

    display: flex;
    align-items: flex-start;

    gap: 16px;
}

.hw-department-category-icon {
    width: 47px;
    height: 47px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--department-accent-dark);

    background: var(--department-soft);

    border-radius: 13px;

    font-size: 18px;
}

.hw-department-category-label {
    display: block;

    margin-bottom: 4px;

    color: var(--department-accent-dark);

    font-size: 9px;
    font-weight: 850;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hw-department-category-heading h3 {
    margin: 0;

    color: var(--hw-navy);

    font-size: 23px;
    line-height: 1.3;

    font-weight: 850;

    letter-spacing: -0.025em;
}

.hw-department-category-heading p {
    max-width: 690px;

    margin: 7px 0 0;

    color: var(--hw-muted);

    font-size: 13px;
    line-height: 1.65;
}

.hw-department-category-count {
    flex-shrink: 0;

    padding: 7px 11px;

    color: #5d7484;

    background: #eff5f7;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}


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

.hw-department-landing-service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 19px;
}

.hw-department-landing-service-card {
    min-width: 0;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: var(--hw-white);

    border: 1px solid #dce7ec;
    border-radius: 17px;

    box-shadow:
        0 8px 24px rgba(6, 34, 53, 0.035);

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.hw-department-landing-service-card:hover {
    transform: translateY(-4px);

    border-color: #b8dee7;

    box-shadow:
        0 17px 38px rgba(6, 34, 53, 0.09);
}

.hw-department-landing-service-image {
    position: relative;

    height: 180px;

    display: block;
    overflow: hidden;

    background: #e7f1f4;

    text-decoration: none;
}

.hw-department-landing-service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    margin: 0;

    transition:
        transform 0.35s ease;
}

.hw-department-landing-service-card:hover
.hw-department-landing-service-image img {
    transform: scale(1.045);
}

.hw-department-service-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #8ba2af;

    background:
        linear-gradient(
            135deg,
            #eff7f9,
            #deedf2
        );

    font-size: 34px;
}

.hw-department-service-duration {
    position: absolute;

    left: 13px;
    bottom: 12px;

    padding: 7px 10px;

    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: var(--hw-navy);

    background: rgba(255, 255, 255, 0.94);

    border-radius: 999px;

    box-shadow:
        0 5px 15px rgba(6, 34, 53, 0.1);

    font-size: 10px;
    font-weight: 800;
}

.hw-department-landing-service-content {
    flex: 1;

    padding: 21px;

    display: flex;
    flex-direction: column;
}

.hw-department-service-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;
}

.hw-department-service-heading-row h4 {
    min-width: 0;

    margin: 0;

    font-size: 17px;
    line-height: 1.35;

    font-weight: 850;
}

.hw-department-landing-service-content
.hw-department-service-title {
    color: var(--hw-navy);

    text-decoration: none;
}

.hw-department-landing-service-content
.hw-department-service-title:hover {
    color: var(--department-accent-dark);
}

.hw-department-landing-price {
    flex-shrink: 0;

    color: var(--department-accent-dark);

    font-size: 14px;
    line-height: 1.4;

    font-weight: 900;
}

.hw-department-landing-service-content > p {
    flex: 1;

    margin: 12px 0 21px;

    color: var(--hw-muted);

    font-size: 12px;
    line-height: 1.7;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.hw-department-landing-service-link {
    padding-top: 15px;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--department-accent-dark);

    border-top: 1px solid #e6edf0;

    font-size: 11px;
    font-weight: 850;

    text-decoration: none;
}

.hw-department-landing-service-link:hover {
    color: #006d9c;

    gap: 10px;
}


/* =========================================================
   DEPARTMENT STORY
========================================================= */

.hw-department-story {
    padding: 100px 0;

    background: var(--hw-white);
}

.hw-department-story-card {
    min-height: 490px;

    display: grid;

    grid-template-columns:
        minmax(0, 0.94fr)
        minmax(0, 1.06fr);

    overflow: hidden;

    background: var(--department-soft);

    border: 1px solid #d5e9ee;
    border-radius: 25px;

    box-shadow:
        0 20px 55px rgba(6, 34, 53, 0.07);
}

.hw-department-story-visual {
    position: relative;

    min-height: 490px;

    overflow: hidden;

    background: #dcecf1;
}

.hw-department-story-visual img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    margin: 0;
}

.hw-department-story-placeholder {
    width: 100%;
    height: 100%;
    min-height: 490px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--department-accent-dark);

    background:
        radial-gradient(
            circle at center,
            #f9fdfe 0%,
            #dceef2 100%
        );

    font-size: 65px;
}

.hw-department-story-copy {
    padding: 60px 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    align-items: flex-start;
}

.hw-department-story-copy h2 {
    max-width: 570px;

    margin: 0;

    color: var(--hw-navy);

    font-size: clamp(34px, 4vw, 49px);
    line-height: 1.05;

    font-weight: 850;

    letter-spacing: -0.045em;
}

.hw-department-story-copy > p {
    max-width: 610px;

    margin: 20px 0 0;

    color: #526a7b;

    font-size: 15px;
    line-height: 1.8;
}

.hw-department-story-list {
    width: 100%;

    margin: 27px 0 27px;
    padding: 0;

    list-style: none;
}

.hw-department-story-list li {
    margin: 0 0 13px;

    display: flex;
    align-items: center;

    gap: 11px;

    color: #3d5668;

    font-size: 13px;
    line-height: 1.55;
}

.hw-department-story-list li > span {
    width: 27px;
    height: 27px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--department-accent-dark);

    background: rgba(255, 255, 255, 0.76);

    border-radius: 50%;

    font-size: 12px;
}


/* =========================================================
   LOCATIONS
========================================================= */

.hw-department-landing-locations {
    padding: 94px 0 100px;

    color: var(--hw-white);

    background:
        linear-gradient(
            135deg,
            #041c2c 0%,
            #07354d 100%
        );
}

.hw-department-landing-heading-light h2 {
    color: var(--hw-white);
}

.hw-department-landing-heading-light > p {
    color: #afc2ce;
}

.hw-department-landing-location-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 21px;
}

.hw-department-landing-location-card {
    position: relative;

    min-width: 0;

    padding: 29px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.055);

    border: 1px solid
    rgba(255, 255, 255, 0.11);

    border-radius: 19px;

    backdrop-filter: blur(4px);
}

.hw-department-landing-location-card::after {
    content: "";

    position: absolute;

    top: -80px;
    right: -70px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        rgba(40, 185, 216, 0.07);

    pointer-events: none;
}

.hw-department-location-card-top {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.hw-department-landing-location-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #79e1f0;

    background:
        rgba(40, 185, 216, 0.12);

    border: 1px solid
    rgba(40, 185, 216, 0.18);

    border-radius: 13px;

    font-size: 18px;
}

.hw-department-location-available {
    padding: 6px 9px;

    color: #93dce7;

    background:
        rgba(255, 255, 255, 0.055);

    border-radius: 999px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hw-department-landing-location-card h3 {
    position: relative;
    z-index: 1;

    margin: 21px 0 19px;

    color: var(--hw-white);

    font-size: 21px;
    line-height: 1.3;

    font-weight: 850;
}

.hw-department-landing-location-detail {
    position: relative;
    z-index: 1;

    margin: 11px 0;

    display: flex;
    align-items: flex-start;

    gap: 10px;

    color: #b5c8d2;

    font-size: 13px;
    line-height: 1.6;
}

.hw-department-landing-location-detail i {
    margin-top: 2px;

    color: #66d7e8;
}

.hw-department-location-call {
    position: relative;
    z-index: 1;

    margin-top: 18px;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #7fe3f0;

    font-size: 12px;
    font-weight: 850;

    text-decoration: none;
}

.hw-department-location-call:hover {
    color: var(--hw-white);

    gap: 10px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.hw-department-landing-cta {
    padding: 82px 0;

    background: var(--hw-white);
}

.hw-department-landing-cta-card {
    position: relative;

    padding: 52px 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #edf9fb 0%,
            #f7fcfd 100%
        );

    border: 1px solid #d3e9ee;
    border-radius: 23px;
}

.hw-department-landing-cta-card::after {
    content: "";

    position: absolute;

    top: -130px;
    right: -80px;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background:
        rgba(40, 185, 216, 0.08);

    pointer-events: none;
}

.hw-department-landing-cta-card > div {
    position: relative;
    z-index: 1;
}

.hw-department-landing-cta-card h2 {
    max-width: 680px;

    margin: 0;

    color: var(--hw-navy);

    font-size: clamp(32px, 4vw, 47px);
    line-height: 1.05;

    font-weight: 850;

    letter-spacing: -0.04em;
}

.hw-department-landing-cta-card p {
    max-width: 650px;

    margin: 15px 0 0;

    color: var(--hw-muted);

    font-size: 14px;
    line-height: 1.7;
}

.hw-department-landing-cta-actions {
    flex-shrink: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 10px;
}

.hw-department-landing-contact-button {
    min-height: 46px;

    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    color: var(--hw-navy);

    background: var(--hw-white);

    border: 1px solid #cbdde4;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;
}

.hw-department-landing-contact-button:hover {
    color: var(--department-accent-dark);

    border-color: #a9dce6;

    box-shadow:
        0 8px 22px rgba(6, 34, 53, 0.07);
}


/* =========================================================
   EXISTING EMPTY STATE SUPPORT
========================================================= */

.hw-department-page .hw-department-empty-state {
    min-height: 80px;

    padding: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: #637b8b;

    background: #f4f9fa;

    border: 1px dashed #c7dbe2;
    border-radius: 13px;

    font-size: 13px;
}

.hw-department-page .hw-department-empty-large {
    min-height: 150px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .hw-department-landing-hero-copy {
        padding: 55px 43px;
    }

    .hw-department-benefit-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hw-department-landing-service-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .hw-department-story-copy {
        padding: 50px 42px;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 900px) {

    .hw-department-landing-hero-card {
        grid-template-columns: 1fr;
    }

    .hw-department-landing-hero-visual {
        min-height: 390px;
    }

    .hw-department-story-card {
        grid-template-columns: 1fr;
    }

    .hw-department-story-visual {
        min-height: 360px;
    }

    .hw-department-story-placeholder {
        min-height: 360px;
    }

    .hw-department-landing-location-grid {
        grid-template-columns: 1fr;
    }

    .hw-department-landing-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .hw-department-landing-hero {
        padding-bottom: 55px;
    }

    .hw-department-landing-hero-card {
        min-height: 0;

        border-radius: 20px;
    }

    .hw-department-landing-hero-copy {
        padding: 40px 25px 36px;
    }

    .hw-department-landing-hero-copy h1 {
        font-size: clamp(
            38px,
            11vw,
            51px
        );
    }

    .hw-department-landing-intro {
        font-size: 15px;
        line-height: 1.7;
    }

    .hw-department-landing-actions {
        width: 100%;

        flex-direction: column;
        align-items: stretch;
    }

    .hw-department-landing-actions
    .hw-button,
    .hw-department-landing-secondary {
        width: 100%;
    }

    .hw-department-hero-mini-stats {
        margin-top: 30px;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 18px 0;
    }

    .hw-department-hero-mini-stats > div {
        padding: 0 15px 0 0;
    }

    .hw-department-hero-mini-stats
    > div:not(:first-child) {
        padding-left: 15px;
    }

    .hw-department-hero-mini-stats
    > div:nth-child(2)::after {
        display: none;
    }

    .hw-department-hero-mini-stats
    > div:nth-child(3) {
        padding-left: 0;
    }

    .hw-department-landing-hero-visual {
        min-height: 300px;
    }

    .hw-department-hero-image-caption {
        left: 23px;
        right: 23px;
        bottom: 22px;
    }


    /* Benefits */

    .hw-department-benefits {
        padding: 68px 0 72px;
    }

    .hw-department-benefit-grid {
        grid-template-columns: 1fr;
    }


    /* Programs */

    .hw-department-programs {
        padding: 68px 0 73px;
    }

    .hw-department-category {
        padding: 21px;

        border-radius: 18px;
    }

    .hw-department-category-heading {
        flex-direction: column;

        gap: 15px;
    }

    .hw-department-category-count {
        margin-left: 63px;
    }

    .hw-department-landing-service-grid {
        grid-template-columns: 1fr;
    }

    .hw-department-landing-service-image {
        height: 205px;
    }


    /* Story */

    .hw-department-story {
        padding: 70px 0;
    }

    .hw-department-story-card {
        border-radius: 19px;
    }

    .hw-department-story-visual,
    .hw-department-story-placeholder {
        min-height: 285px;
    }

    .hw-department-story-copy {
        padding: 38px 25px;
    }


    /* Locations */

    .hw-department-landing-locations {
        padding: 69px 0 73px;
    }

    .hw-department-landing-location-card {
        padding: 24px;
    }


    /* CTA */

    .hw-department-landing-cta {
        padding: 62px 0;
    }

    .hw-department-landing-cta-card {
        padding: 37px 25px;

        border-radius: 19px;
    }

    .hw-department-landing-cta-actions {
        width: 100%;
    }

    .hw-department-landing-cta-actions
    .hw-button,
    .hw-department-landing-contact-button {
        width: 100%;
    }

}

/* =========================================================
   DEPARTMENT LANDING PAGE — ENHANCED CONTENT
========================================================= */

.hw-department-hero-support {
    display: inline-block;
    margin-top: 8px;
    color: var(--hw-muted);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   DEPARTMENT EXPERIENCE / FEATURE AREA
========================================================= */

.hw-department-experience {
    padding: 92px 0 96px;
    background: var(--hw-white);
}

.hw-department-section-heading-centred {
    max-width: 790px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    text-align: center;
}

.hw-department-section-heading-centred > p {
    margin-left: auto;
    margin-right: auto;
}

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

.hw-department-feature-card {
    min-width: 0;
    padding: 29px 27px 28px;
    background: #f7fbfc;
    border: 1px solid var(--hw-border);
    border-radius: 18px;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.hw-department-feature-card:hover {
    transform: translateY(-4px);
    border-color: #b9dfe8;
    box-shadow: 0 18px 40px rgba(6, 34, 53, 0.08);
}

.hw-department-feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hw-blue);
    background: #e1f6fa;
    border: 1px solid #c5eaf1;
    border-radius: 14px;
    font-size: 21px;
}

.hw-department-feature-card h3 {
    margin: 0;
    color: var(--hw-navy);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.hw-department-feature-card p {
    margin: 10px 0 0;
    color: var(--hw-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   PROGRAMS SECTION TRANSITION
========================================================= */

.hw-department-experience + .hw-department-section {
    border-top: 1px solid #edf3f5;
}


/* =========================================================
   WHY CHOOSE DEPARTMENT
========================================================= */

.hw-department-why {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    color: var(--hw-white);
    background:
        linear-gradient(
            135deg,
            #062235 0%,
            #07334b 58%,
            #07506b 100%
        );
}

.hw-department-why::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    top: -260px;
    right: -120px;
    border-radius: 50%;
    background: rgba(40, 185, 216, 0.09);
}

.hw-department-why::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    bottom: -230px;
    left: -100px;
    border-radius: 50%;
    background: rgba(40, 185, 216, 0.055);
}

.hw-department-why .hw-shell {
    position: relative;
    z-index: 1;
}

.hw-department-why-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 70px;
    align-items: center;
}

.hw-department-why-copy h2 {
    max-width: 490px;
    margin: 0;
    color: var(--hw-white);
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.06;
    letter-spacing: -0.045em;
    font-weight: 850;
}

.hw-department-why-copy > p {
    max-width: 520px;
    margin: 20px 0 0;
    color: #b3c9d4;
    font-size: 15px;
    line-height: 1.8;
}

.hw-department-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.hw-department-highlight-card {
    min-width: 0;
    padding: 23px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.hw-department-highlight-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(111, 221, 239, 0.3);
}

.hw-department-highlight-icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #75e1f0;
    background: rgba(40, 185, 216, 0.12);
    border: 1px solid rgba(105, 220, 238, 0.15);
    border-radius: 12px;
    font-size: 18px;
}

.hw-department-highlight-card h3 {
    margin: 1px 0 0;
    color: var(--hw-white);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 850;
}

.hw-department-highlight-card p {
    margin: 7px 0 0;
    color: #a9c0cc;
    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   DEPARTMENT LANDING — TABLET
========================================================= */

@media (max-width: 900px) {

    .hw-department-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hw-department-why-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}


/* =========================================================
   DEPARTMENT LANDING — MOBILE
========================================================= */

@media (max-width: 650px) {

    .hw-department-experience {
        padding: 65px 0;
    }

    .hw-department-section-heading-centred {
        margin-bottom: 35px;
        text-align: left;
    }

    .hw-department-section-heading-centred > p {
        margin-left: 0;
        margin-right: 0;
    }

    .hw-department-feature-grid {
        grid-template-columns: 1fr;
    }

    .hw-department-feature-card {
        padding: 24px;
    }

    .hw-department-why {
        padding: 68px 0;
    }

    .hw-department-highlight-grid {
        grid-template-columns: 1fr;
    }

    .hw-department-why-layout {
        gap: 35px;
    }

}
