/*
 * Harbor Home Healthcare — Homepage
 * Harbor-specific responsive marketing layout.
 * Scoped to the WordPress home page.
 */

:root {
    --hhk-navy: #0d2f52;
    --hhk-navy-deep: #08263f;
    --hhk-teal: #0f6f73;
    --hhk-teal-deep: #0a5054;
    --hhk-terracotta: #b94f3c;
    --hhk-terracotta-dark: #953928;
    --hhk-sand: #d9c49d;
    --hhk-cream: #f6f4eb;
    --hhk-cream-2: #fcfaf6;
    --hhk-blue-soft: #edf6f7;
    --hhk-text: #26323d;
    --hhk-muted: #66717b;
    --hhk-border: #e2e5e5;
    --hhk-shadow: 0 16px 42px rgba(8, 38, 63, .11);
    --hhk-radius: 24px;
    --hhk-heading: Georgia, 'Times New Roman', serif;
    --hhk-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --------------------------------------------------------------------------
   Responsive Harbor container system with fluid gutters and wider desktop shells.
   -------------------------------------------------------------------------- */
.hhk-container,
body.home .harbor-shell {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 18px;
    padding-left: 18px;
}

@media (min-width: 576px) {
    .hhk-container,
    body.home .harbor-shell { max-width: 540px; }
}

@media (min-width: 768px) {
    .hhk-container,
    body.home .harbor-shell { max-width: 720px; }
}

@media (min-width: 992px) {
    .hhk-container,
    body.home .harbor-shell { max-width: 960px; }
}

@media (min-width: 1200px) {
    .hhk-container,
    body.home .harbor-shell { max-width: 1140px; }
}

@media (min-width: 1400px) {
    .hhk-container,
    body.home .harbor-shell { max-width: 1320px; }
}

@media (min-width: 1600px) {
    .hhk-container,
    body.home .harbor-shell { max-width: 1440px; }
}

/* --------------------------------------------------------------------------
   Homepage global
   -------------------------------------------------------------------------- */
.harbor-home-redesign,
.harbor-home-redesign *,
.harbor-home-redesign *::before,
.harbor-home-redesign *::after {
    box-sizing: border-box;
}

.harbor-home-redesign {
    overflow: hidden;
    background: #fff;
    color: var(--hhk-text);
    font-family: var(--hhk-body);
}

.harbor-home-redesign h1,
.harbor-home-redesign h2 {
    margin: 0;
    color: var(--hhk-navy-deep);
    font-family: var(--hhk-heading);
    font-weight: 500;
    letter-spacing: -.025em;
}

.harbor-home-redesign h3 {
    margin: 0;
    color: var(--hhk-navy);
    font-family: var(--hhk-body);
    font-weight: 750;
    letter-spacing: -.015em;
}

.harbor-home-redesign p {
    margin: 0;
    color: var(--hhk-text);
    font-size: 17px;
    line-height: 1.72;
}

.hhk-kicker {
    margin: 0 0 16px !important;
    color: var(--hhk-teal) !important;
    font-family: var(--hhk-body);
    font-size: 13px !important;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.3 !important;
    text-transform: uppercase;
}

.hhk-lead {
    max-width: 640px;
    margin-top: 26px !important;
    font-size: clamp(18px, 1.55vw, 21px) !important;
    line-height: 1.62 !important;
}

.hhk-btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 15px 27px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-family: var(--hhk-body);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.hhk-btn:hover,
.hhk-btn:focus-visible {
    transform: translateY(-1px);
    text-decoration: none;
}

.hhk-btn--primary {
    background: var(--hhk-terracotta);
    border-color: var(--hhk-terracotta);
    color: #fff;
}

.hhk-btn--primary:hover,
.hhk-btn--primary:focus-visible {
    background: var(--hhk-terracotta-dark);
    border-color: var(--hhk-terracotta-dark);
    color: #fff;
}

.hhk-btn--secondary {
    background: var(--hhk-navy);
    border-color: var(--hhk-navy);
    color: #fff;
}

.hhk-btn--secondary:hover,
.hhk-btn--secondary:focus-visible {
    background: var(--hhk-navy-deep);
    border-color: var(--hhk-navy-deep);
    color: #fff;
}

.hhk-btn--outline {
    background: transparent;
    border-color: rgba(13, 47, 82, .34);
    color: var(--hhk-navy);
}

.hhk-btn--outline:hover,
.hhk-btn--outline:focus-visible {
    background: var(--hhk-navy);
    border-color: var(--hhk-navy);
    color: #fff;
}

.hhk-btn--light {
    background: var(--hhk-cream);
    border-color: var(--hhk-cream);
    color: var(--hhk-navy-deep);
}

.hhk-btn--light:hover,
.hhk-btn--light:focus-visible {
    background: #fff;
    border-color: #fff;
    color: var(--hhk-navy-deep);
}

.hhk-btn--ghost {
    background: transparent;
    border-color: rgba(255,255,255,.65);
    color: #fff;
}

.hhk-btn--ghost:hover,
.hhk-btn--ghost:focus-visible {
    background: rgba(255,255,255,.10);
    border-color: #fff;
    color: #fff;
}

.hhk-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

/* --------------------------------------------------------------------------
   Homepage header polish
   -------------------------------------------------------------------------- */
body.home .harbor-topbar {
    background: var(--hhk-navy-deep);
}

body.home .harbor-topbar__inner {
    min-height: 36px;
}

body.home .harbor-topbar__left {
    font-size: 12px;
    letter-spacing: .02em;
}

body.home .harbor-site-header {
    border-bottom-color: rgba(13,47,82,.10);
    background: rgba(255,255,255,.98);
}

body.home .harbor-site-header__inner {
    min-height: 88px;
    gap: 24px;
}

body.home .harbor-site-header__logo-img {
    height: 64px;
}

body.home .harbor-nav__menu > li > a {
    font-size: 18px;
    font-weight: 700;
}

body.home .harbor-site-header__cta {
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 4px;
    background: var(--hhk-terracotta);
    border-color: var(--hhk-terracotta);
    color: #fff;
}

body.home .harbor-site-header__cta:hover,
body.home .harbor-site-header__cta:focus-visible {
    background: var(--hhk-terracotta-dark);
    border-color: var(--hhk-terracotta-dark);
    color: #fff;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hhk-hero {
    position: relative;
    background: #fff;
    padding: clamp(54px, 6.2vw, 98px) 0 clamp(120px, 11vw, 170px);
}

.hhk-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 10px;
    background: var(--hhk-sand);
}

.hhk-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.18fr);
    gap: clamp(42px, 5.5vw, 86px);
    align-items: center;
}

.hhk-hero__copy {
    position: relative;
    z-index: 2;
    padding: 18px 0;
}

.hhk-hero h1 {
    max-width: 720px;
    font-size: clamp(48px, 5.3vw, 78px);
    line-height: .99;
}

.hhk-hero__media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 96px 0 96px 0;
    background: var(--hhk-cream);
    box-shadow: 0 22px 58px rgba(8,38,63,.12);
}

.hhk-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* --------------------------------------------------------------------------
   Overlapping trust panel
   -------------------------------------------------------------------------- */
.hhk-trust {
    position: relative;
    z-index: 5;
    background: var(--hhk-cream);
}

.hhk-trust__panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: -82px;
    padding: 38px 30px;
    border: 1px solid rgba(8,38,63,.08);
    border-radius: var(--hhk-radius);
    background: #fff;
    box-shadow: var(--hhk-shadow);
}

.hhk-trust__panel article {
    position: relative;
    min-width: 0;
    padding: 4px 28px;
    text-align: center;
}

.hhk-trust__panel article + article::before {
    content: '';
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 1px;
    background: var(--hhk-border);
}

.hhk-trust__panel strong,
.hhk-trust__panel span {
    display: block;
}

.hhk-trust__panel strong {
    color: var(--hhk-navy-deep);
    font-family: var(--hhk-heading);
    font-size: clamp(21px, 2vw, 30px);
    font-weight: 500;
    line-height: 1.15;
}

.hhk-trust__panel span {
    margin-top: 8px;
    color: var(--hhk-muted);
    font-size: 13px;
    line-height: 1.45;
}

/* --------------------------------------------------------------------------
   Shared section heads
   -------------------------------------------------------------------------- */
.hhk-section-head {
    max-width: 900px;
}

.hhk-section-head--center {
    margin: 0 auto 50px;
    text-align: center;
}

.hhk-section-head h2,
.hhk-zigzag h2,
.hhk-area h2,
.hhk-final h2 {
    font-size: clamp(38px, 4.25vw, 60px);
    line-height: 1.04;
}

.hhk-section-head > p:not(.hhk-kicker) {
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--hhk-muted);
    font-size: 18px;
}

/* --------------------------------------------------------------------------
   Zig-zag content sections
   -------------------------------------------------------------------------- */
.hhk-zigzag {
    padding: clamp(82px, 8vw, 128px) 0;
}

.hhk-zigzag--light {
    background: var(--hhk-cream);
}

.hhk-zigzag--dark {
    background: linear-gradient(135deg, var(--hhk-navy-deep), var(--hhk-teal-deep));
}

.hhk-zigzag__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    gap: clamp(56px, 7vw, 110px);
    align-items: center;
}

.hhk-zigzag__grid--reverse {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
}

.hhk-zigzag__copy > p:not(.hhk-kicker) {
    max-width: 660px;
    margin-top: 24px;
    color: var(--hhk-muted);
    font-size: 18px;
}

.hhk-zigzag__media {
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 48px rgba(8,38,63,.12);
}

.hhk-zigzag__media--portrait {
    border-radius: 76px 0 76px 0;
}

.hhk-zigzag__media--landscape {
    border-radius: 0 76px 0 76px;
}

.hhk-zigzag__media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.hhk-checks {
    display: grid;
    gap: 12px;
    margin: 28px 0 32px;
    padding: 0;
    list-style: none;
}

.hhk-checks li {
    position: relative;
    padding-left: 30px;
    color: var(--hhk-text);
    font-size: 16px;
    line-height: 1.55;
}

.hhk-checks li::before {
    content: '✓';
    position: absolute;
    top: -1px;
    left: 0;
    color: var(--hhk-teal);
    font-size: 20px;
    font-weight: 900;
}

.hhk-zigzag--dark h2,
.hhk-zigzag--dark h3,
.hhk-zigzag--dark .hhk-zigzag__copy > p:not(.hhk-kicker) {
    color: #fff;
}

.hhk-zigzag--dark .hhk-kicker {
    color: #cfe7df !important;
}

.hhk-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 30px 0 34px;
}

.hhk-mini-grid > div {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.24);
}

.hhk-mini-grid strong,
.hhk-mini-grid span {
    display: block;
}

.hhk-mini-grid strong {
    color: #fff;
    font-size: 16px;
}

.hhk-mini-grid span {
    margin-top: 6px;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Harbor Promise — Mission / Vision / Values
   -------------------------------------------------------------------------- */
.hhk-promise {
    padding: clamp(76px, 7vw, 108px) 0;
    background: linear-gradient(145deg, #08263f 0%, #0b304d 56%, #0a3a4d 100%);
    color: #fff;
}

.hhk-promise__head {
    max-width: 920px;
    margin-bottom: 42px;
}

.hhk-promise__head h2 {
    color: #fff;
}

.hhk-promise__head > p:not(.hhk-kicker) {
    max-width: 720px;
    color: #d6e3ea;
    font-size: 18px;
    line-height: 1.65;
}

.hhk-promise .hhk-kicker {
    color: #a9d8dc !important;
    font-size: 13px !important;
    letter-spacing: .13em;
}

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

.hhk-promise-card {
    position: relative;
    min-height: 270px;
    padding: 40px 38px 38px 44px;
    overflow: hidden;
    border: 1px solid rgba(199, 224, 232, .22);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.045));
    box-shadow: 0 18px 40px rgba(0, 18, 34, .16);
}

.hhk-promise-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--hhk-terracotta);
}

.hhk-promise-card--vision::before {
    background: #86cbd0;
}

.hhk-promise-card__label {
    display: block;
    margin-bottom: 16px;
    color: #c9e6e8;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .11em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hhk-promise-card p {
    color: #fff;
    font-family: var(--hhk-heading);
    font-size: clamp(24px, 2.2vw, 33px);
    font-weight: 500;
    line-height: 1.32;
}

.hhk-promise__values-section {
    margin-top: 42px;
}

.hhk-promise__values-head {
    max-width: 760px;
    margin-bottom: 22px;
}

.hhk-promise__values-head .hhk-kicker {
    margin-bottom: 10px !important;
}

.hhk-promise__values-head h3 {
    color: #fff;
    font-family: var(--hhk-heading);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 500;
    line-height: 1.15;
}

.hhk-promise__values {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hhk-promise-value {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 12px;
    min-height: 132px;
    padding: 22px 20px;
    border: 1px solid rgba(199, 224, 232, .19);
    border-radius: 14px;
    background: rgba(255,255,255,.055);
    box-shadow: 0 8px 24px rgba(0, 18, 34, .08);
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.hhk-promise-value:hover,
.hhk-promise-value:focus-within {
    transform: translateY(-2px);
    border-color: rgba(169, 216, 220, .48);
    background: rgba(255,255,255,.085);
    box-shadow: 0 12px 28px rgba(0, 18, 34, .12);
}

.hhk-promise-value__mark {
    width: 9px;
    height: 9px;
    margin-top: 7px;
    border: 2px solid #a9d8dc;
    border-radius: 50%;
    background: transparent;
}

.hhk-promise-value strong,
.hhk-promise-value span {
    display: block;
}

.hhk-promise-value strong {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.hhk-promise-value div > span {
    margin-top: 7px;
    color: #d1dee5;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.hhk-promise__next-step {
    max-width: 920px;
    margin: 46px auto 0;
    padding-top: 34px;
    border-top: 1px solid rgba(199, 224, 232, .18);
    text-align: center;
}

.hhk-promise__next-step > p {
    max-width: 820px;
    margin: 0 auto;
    color: #dbe7ec;
    font-size: 17px;
    line-height: 1.7;
}

.hhk-promise__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px 26px;
    margin-top: 26px;
}

.hhk-promise__primary,
.hhk-promise__primary:visited {
    min-height: 52px;
    background: var(--hhk-terracotta);
    border-color: var(--hhk-terracotta);
    color: #fff;
}

.hhk-promise__primary:hover,
.hhk-promise__primary:focus-visible,
.hhk-promise__primary:active {
    background: var(--hhk-terracotta-dark);
    border-color: var(--hhk-terracotta-dark);
    color: #fff;
}

.hhk-promise__primary[aria-disabled='true'] {
    opacity: .6;
    pointer-events: none;
}

.hhk-promise__secondary,
.hhk-promise__secondary:visited {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 10px 2px;
    color: #bfe6e8;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.hhk-promise__secondary:hover,
.hhk-promise__secondary:focus-visible,
.hhk-promise__secondary:active {
    color: #fff;
    text-decoration-thickness: 2px;
}

/* --------------------------------------------------------------------------
   Process cards
   -------------------------------------------------------------------------- */
.hhk-process {
    padding: clamp(86px, 8vw, 126px) 0;
    background: var(--hhk-blue-soft);
}

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

.hhk-process__grid article {
    min-height: 280px;
    padding: 34px 32px;
    border: 1px solid rgba(13,47,82,.10);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(8,38,63,.06);
}

.hhk-process__number,
.hhk-service-card__num {
    display: block;
    margin-bottom: 38px;
    color: var(--hhk-terracotta);
    font-family: var(--hhk-heading);
    font-size: 34px;
    font-weight: 500;
}

.hhk-process__grid h3 {
    font-size: 21px;
    line-height: 1.25;
}

.hhk-process__grid p {
    margin-top: 14px;
    color: var(--hhk-muted);
    font-size: 15px;
}

.hhk-center-action {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.hhk-services {
    padding: clamp(86px, 8vw, 126px) 0;
    background: #fff;
}

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

.hhk-service-card {
    position: relative;
    min-height: 350px;
    padding: 38px 38px 34px;
    border: 1px solid var(--hhk-border);
    border-radius: 18px;
    background: #fff;
    color: inherit;
    box-shadow: 0 10px 28px rgba(8,38,63,.06);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hhk-service-card:hover,
.hhk-service-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(15,111,115,.35);
    box-shadow: 0 18px 38px rgba(8,38,63,.11);
    text-decoration: none;
}

.hhk-service-card h3 {
    font-family: var(--hhk-heading);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
}

.hhk-service-card p {
    max-width: 560px;
    margin-top: 18px;
    color: var(--hhk-muted);
    font-size: 16px;
}

.hhk-service-card__link {
    position: absolute;
    right: 38px;
    bottom: 34px;
    left: 38px;
    color: var(--hhk-teal);
    font-size: 14px;
    font-weight: 800;
}

/* --------------------------------------------------------------------------
   Service area
   -------------------------------------------------------------------------- */
.hhk-area {
    padding: clamp(82px, 8vw, 124px) 0;
    background: var(--hhk-cream-2);
}

.hhk-area__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(52px, 7vw, 110px);
    align-items: center;
}

.hhk-area__grid > div:first-child > p:not(.hhk-kicker) {
    max-width: 650px;
    margin-top: 22px;
    color: var(--hhk-muted);
    font-size: 18px;
}

.hhk-area__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.hhk-text-link {
    color: var(--hhk-teal);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.hhk-text-link:hover,
.hhk-text-link:focus-visible {
    color: var(--hhk-teal-deep);
    text-decoration: underline;
}

.hhk-area__card {
    padding: 42px;
    border-radius: 24px;
    background: var(--hhk-navy-deep);
    box-shadow: var(--hhk-shadow);
}

.hhk-area__label {
    display: block;
    margin-bottom: 20px;
    color: var(--hhk-sand);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hhk-area__card ul {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hhk-area__card li {
    position: relative;
    padding-left: 28px;
    color: #fff;
    font-size: 16px;
    line-height: 1.55;
}

.hhk-area__card li::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: var(--hhk-sand);
    font-size: 24px;
    line-height: 1;
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.hhk-final {
    padding: clamp(74px, 7vw, 104px) 0;
    background: var(--hhk-teal-deep);
}

.hhk-final__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 54px;
    align-items: center;
}

.hhk-final h2,
.hhk-final p {
    color: #fff;
}

.hhk-final .hhk-kicker {
    color: #d8ebe5 !important;
}

.hhk-final__inner > div:first-child > p:not(.hhk-kicker) {
    max-width: 720px;
    margin-top: 18px;
    color: rgba(255,255,255,.80);
    font-size: 18px;
}

.hhk-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

/* --------------------------------------------------------------------------
   Footer polish on homepage only
   -------------------------------------------------------------------------- */
body.home .harbor-footer {
    background: var(--hhk-navy-deep);
}

/* --------------------------------------------------------------------------
   Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
    body.home .harbor-site-header__inner { gap: 16px; }
    body.home .harbor-site-header__logo-img { height: 54px; }

    .hhk-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 38px;
    }

    .hhk-hero__media,
    .hhk-hero__media img { min-height: 460px; }

    .hhk-zigzag__grid,
    .hhk-zigzag__grid--reverse {
        gap: 52px;
    }
}

@media (max-width: 991.98px) {
    .hhk-hero {
        padding-top: 48px;
        padding-bottom: 120px;
    }

    .hhk-hero__grid,
    .hhk-zigzag__grid,
    .hhk-zigzag__grid--reverse,
    .hhk-area__grid,
    .hhk-final__inner {
        grid-template-columns: 1fr;
    }

    .hhk-hero h1 { max-width: 780px; }

    .hhk-hero__media {
        min-height: 500px;
        margin-top: 10px;
    }

    .hhk-hero__media img { min-height: 500px; }

    .hhk-trust__panel {
        grid-template-columns: repeat(2, minmax(0,1fr));
        row-gap: 28px;
        margin-top: -64px;
    }

    .hhk-trust__panel article:nth-child(3)::before { display: none; }

    .hhk-zigzag__grid--reverse .hhk-zigzag__media { order: 2; }
    .hhk-zigzag__grid--reverse .hhk-zigzag__copy { order: 1; }

    .hhk-process__grid { grid-template-columns: 1fr; }

    .hhk-process__grid article {
        min-height: 0;
    }

    .hhk-services__grid { grid-template-columns: 1fr; }

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

    .hhk-final__actions { justify-content: flex-start; }
}

/* --------------------------------------------------------------------------
   Mobile — Harbor-specific, compact and calm
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
    body.home .harbor-topbar {
        display: none;
    }

    .hhk-container,
    body.home .harbor-shell {
        max-width: none;
        padding-right: 18px;
        padding-left: 18px;
    }

    body.home .harbor-site-header__inner {
        min-height: 66px;
        padding-top: 0;
        padding-bottom: 0;
    }

    body.home .harbor-site-header__logo-img {
        height: 44px;
        max-width: 196px;
    }

    .harbor-home-redesign p { font-size: 16px; }

    .hhk-hero {
        padding: 26px 0 30px;
        background: linear-gradient(180deg, #fff 0%, #fbfaf6 100%);
    }

    .hhk-hero::after {
        height: 6px;
    }

    .hhk-hero__grid {
        gap: 0;
    }

    .hhk-hero__copy {
        padding: 0;
    }

    .hhk-hero .hhk-kicker {
        margin-bottom: 11px !important;
        font-size: 11px !important;
        letter-spacing: .10em;
    }

    .hhk-hero h1 {
        max-width: 11ch;
        font-size: clamp(36px, 9.9vw, 44px);
        line-height: 1.03;
        letter-spacing: -.03em;
    }

    .hhk-lead {
        max-width: 34em;
        margin-top: 16px !important;
        font-size: 16px !important;
        line-height: 1.55 !important;
    }

    .hhk-hero .hhk-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 22px;
    }

    .hhk-hero .hhk-actions .hhk-btn {
        width: 100%;
        min-height: 48px;
        padding: 13px 14px;
        font-size: 14px;
    }

    .hhk-hero__media {
        width: 100%;
        min-height: 0;
        aspect-ratio: 16 / 10;
        margin: 26px 0 0;
        overflow: hidden;
        border-radius: 34px 0 34px 0;
        box-shadow: 0 14px 32px rgba(8,38,63,.12);
    }

    .hhk-hero__media img {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
        object-position: center 42%;
    }

    .hhk-trust {
        padding: 24px 0 30px;
        background: var(--hhk-cream);
    }

    .hhk-trust__panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        margin-top: 0;
        padding: 0;
        overflow: hidden;
        border-radius: 16px;
        box-shadow: 0 10px 28px rgba(8,38,63,.08);
    }

    .hhk-trust__panel article {
        padding: 18px 12px;
    }

    .hhk-trust__panel article + article::before {
        display: none;
    }

    .hhk-trust__panel article:nth-child(even) {
        border-left: 1px solid var(--hhk-border);
    }

    .hhk-trust__panel article:nth-child(n+3) {
        border-top: 1px solid var(--hhk-border);
    }

    .hhk-trust__panel strong {
        font-size: 18px;
    }

    .hhk-trust__panel span {
        margin-top: 5px;
        font-size: 11.5px;
        line-height: 1.4;
    }

    .hhk-actions,
    .hhk-final__actions {
        width: 100%;
        flex-direction: column;
    }

    .hhk-actions .hhk-btn,
    .hhk-final__actions .hhk-btn {
        width: 100%;
    }

    .hhk-section-head--center {
        margin-bottom: 34px;
        text-align: left;
    }

    .hhk-section-head > p:not(.hhk-kicker) {
        margin-left: 0;
        margin-right: 0;
    }

    .hhk-section-head h2,
    .hhk-zigzag h2,
    .hhk-area h2,
    .hhk-final h2 {
        font-size: clamp(32px, 8.8vw, 42px);
        line-height: 1.08;
    }

    .hhk-zigzag,
    .hhk-process,
    .hhk-services,
    .hhk-area {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .hhk-zigzag__grid,
    .hhk-zigzag__grid--reverse {
        gap: 32px;
    }

    .hhk-zigzag__media {
        width: 100%;
        margin: 0;
        overflow: hidden;
        border-radius: 30px 0 30px 0;
        box-shadow: 0 12px 30px rgba(8,38,63,.10);
    }

    .hhk-zigzag__media img {
        min-height: 0;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    .hhk-mini-grid { grid-template-columns: 1fr; }

    .hhk-promise { padding: 60px 0; }
    .hhk-promise__head { margin-bottom: 30px; text-align: center; }
    .hhk-promise__head > p:not(.hhk-kicker) { margin-left: auto; margin-right: auto; font-size: 16px; line-height: 1.6; }
    .hhk-promise .hhk-kicker { font-size: 12px !important; }
    .hhk-promise__statements { grid-template-columns: 1fr; gap: 16px; }
    .hhk-promise-card { min-height: 0; padding: 30px 24px 28px 30px; border-radius: 15px; }
    .hhk-promise-card p { font-size: 21px; line-height: 1.4; }
    .hhk-promise__values-section { margin-top: 34px; }
    .hhk-promise__values-head { margin-bottom: 18px; }
    .hhk-promise__values-head h3 { font-size: 29px; }
    .hhk-promise__values { grid-template-columns: 1fr; gap: 10px; }
    .hhk-promise-value { min-height: 0; padding: 18px; }
    .hhk-promise-value strong { font-size: 16px; }
    .hhk-promise-value div > span { font-size: 14px; line-height: 1.5; }
    .hhk-promise__next-step { margin-top: 34px; padding-top: 28px; text-align: left; }
    .hhk-promise__next-step > p { font-size: 16px; line-height: 1.65; }
    .hhk-promise__actions { align-items: stretch; justify-content: flex-start; gap: 12px; margin-top: 22px; }
    .hhk-promise__primary { width: 100%; min-height: 50px; }
    .hhk-promise__secondary { width: 100%; min-height: 48px; justify-content: flex-start; }

    .hhk-process__grid article,
    .hhk-service-card,
    .hhk-area__card {
        padding: 26px 22px;
    }

    .hhk-process__number,
    .hhk-service-card__num {
        margin-bottom: 24px;
    }

    .hhk-service-card {
        min-height: 290px;
    }

    .hhk-service-card__link {
        right: 22px;
        bottom: 26px;
        left: 22px;
    }

    .hhk-final {
        padding: 58px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hhk-btn,
    .hhk-service-card,
    .hhk-promise-value {
        transition: none;
    }

    .hhk-promise-value:hover,
    .hhk-promise-value:focus-within {
        transform: none;
    }
}
