/*
 * Theme Name:  Harbor Child
 * Theme URI:   https://harborhhc.com
 * Description: Harbor Home Healthcare child theme for Astra.
 * Author:      Harbor Home Healthcare
 * Template:    astra
 * Version:     3.4.0
*/

:root {
    --hh-navy: #16395b;
    --hh-navy-dark: #0f2540;
    --hh-teal: #177f8c;
    --hh-teal-deep: #0e5f6b;
    --hh-teal-light: #edf8fa;
    --hh-green: #5c9d32;
    --hh-green-dark: #4c8429;
    --hh-cream: #fbf6ea;
    --hh-white: #ffffff;
    --hh-text: #16395b;
    --hh-muted: #5f6b7a;
    --hh-border: #e5e7eb;
    --hh-card-bg: #edf7f9;
    --hh-warm-note: #fff3cd;
    --hh-warm-note-border: #f1d88c;
    --hh-font-main: 'Montserrat', sans-serif;
    --hh-radius-sm: 10px;
    --hh-radius-md: 16px;
    --hh-radius-lg: 22px;
    --hh-shadow-card: 0 8px 30px rgba(22,57,91,.10);
    --hh-shadow-card-hover: 0 18px 40px rgba(22,57,91,.15);
    --hh-shadow-btn: 0 6px 18px rgba(92,157,50,.22);
    --hh-shadow-soft: 0 12px 40px rgba(22,57,91,.12);
    --hh-max-width: 1240px;
    --hh-topbar-height: 44px;
}

/* ========================================
   RESET / BASE
======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea,
h1, h2, h3, h4, h5, h6,
p, li, a, span, div, small, strong, label {
    font-family: var(--hh-font-main) !important;
}

body {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
    color: var(--hh-text);
    background: var(--hh-white);
    overflow-x: hidden;
}

body.harbor-menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--hh-teal);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.ast-container {
    max-width: var(--hh-max-width) !important;
}

/* Hide Astra default header pieces */
.ast-desktop-header-wrap,
.ast-mobile-header-wrap,
.main-header-bar-wrap,
.main-header-bar,
.ast-above-header-wrap,
.ast-below-header-wrap,
.ast-builder-grid-row-container,
.ast-builder-layout-element,
.site-header-primary-section-left,
.site-header-primary-section-right,
.site-header-above-section,
.site-header-below-section {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

/* ========================================
   GLOBAL BUTTONS
======================================== */
.harbor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: var(--hh-radius-sm);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, transform .18s ease, box-shadow .2s ease;
    border: 2px solid transparent;
    text-decoration: none !important;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.harbor-btn--green {
    background: var(--hh-green);
    color: #fff !important;
    box-shadow: var(--hh-shadow-btn);
}

.harbor-btn--green:hover {
    background: var(--hh-green-dark);
    transform: translateY(-2px);
}

.harbor-btn--outline {
    background: transparent;
    color: var(--hh-navy) !important;
    border-color: var(--hh-navy);
}

.harbor-btn--outline:hover {
    background: var(--hh-navy);
    color: #fff !important;
}

/* ========================================
   TOP BAR
======================================== */
.harbor-topbar {
    background: var(--hh-navy);
    color: #ffffff;
    padding: 10px 0;
    position: relative;
    z-index: 10001;
}

.harbor-topbar__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.harbor-topbar__left,
.harbor-topbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.harbor-topbar__text,
.harbor-topbar__link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.harbor-topbar__link:hover {
    color: #9ad44c;
}

/* ========================================
   MAIN STICKY NAV
======================================== */
.harbor-site-header {
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(229,231,235,.95);
    position: sticky;
    top: var(--hh-topbar-height);
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(22,57,91,.08);
}

.harbor-site-header__inner {
    max-width: 1280px;
    margin-inline: auto;
    padding: 14px 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 84px;
}

.harbor-site-header__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    flex-shrink: 0;
}

.harbor-site-header__logo-img {
    height: 58px;
    width: auto;
    display: block;
}

.harbor-nav {
    min-width: 0;
}

.harbor-nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.harbor-nav__menu li {
    list-style: none;
}

.harbor-nav__menu li a {
    display: block;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 700;
    color: var(--hh-navy);
    border-radius: 10px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.harbor-nav__menu li a:hover,
.harbor-nav__menu li.current-menu-item > a,
.harbor-nav__menu li.current_page_item > a {
    background: #edf8fa;
    color: var(--hh-teal) !important;
    transform: translateY(-1px);
}

.harbor-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 190px;
}

.harbor-header-cta {
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 800;
}

/* ========================================
   HAMBURGER
======================================== */
.harbor-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: #ffffff;
    border: 1px solid #e7edf2;
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(22,57,91,.08);
    -webkit-tap-highlight-color: transparent;
}

.harbor-mobile-toggle:hover {
    background: #f7fafc;
}

.harbor-mobile-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--hh-navy);
    border-radius: 3px;
    transition: .3s ease;
}

/* ========================================
   ANNOUNCEMENT BAR
======================================== */
.harbor-announcement-bar {
    background: var(--hh-navy-dark);
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 18px;
    line-height: 1.45;
}

.harbor-announcement-bar p {
    margin: 0;
}

.harbor-announcement-bar strong {
    color: #ffffff;
}

/* ========================================
   HOMEPAGE HERO
======================================== */
.harbor-hero {
    background: linear-gradient(105deg, var(--hh-cream) 52%, var(--hh-teal-light) 52%);
    padding: 64px 0 56px;
    overflow: hidden;
}

.harbor-hero__inner {
    max-width: var(--hh-max-width);
    margin-inline: auto;
    padding-inline: 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: 52px;
    align-items: center;
}

.harbor-hero__text {
    min-width: 0;
}

.harbor-hero__eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--hh-teal);
    margin: 0 0 14px;
}

.harbor-hero__heading {
    font-size: clamp(36px, 4.4vw, 56px);
    font-weight: 900;
    color: var(--hh-navy);
    line-height: 1.08;
    margin: 0 0 18px;
    letter-spacing: -.02em;
}

.harbor-hero__heading--accent {
    color: var(--hh-teal);
    display: block;
}

.harbor-hero__sub {
    font-size: 18px;
    color: #4e5b68;
    line-height: 1.75;
    margin: 0 0 34px;
    max-width: 590px;
    font-weight: 500;
}

.harbor-hero__sub strong {
    color: var(--hh-navy);
    font-weight: 800;
}

.harbor-hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.harbor-hero__social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.harbor-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--hh-navy);
    color: #fff;
    transition: background .2s ease, transform .2s ease;
}

.harbor-social-icon:hover {
    background: var(--hh-teal);
    transform: translateY(-2px);
}

.harbor-social-icon svg {
    width: 18px;
    height: 18px;
}

.harbor-hero__image {
    min-width: 0;
}

.harbor-hero-slider {
    position: relative;
    width: 100%;
    min-height: 460px;
    border-radius: var(--hh-radius-lg);
    overflow: hidden;
    box-shadow: var(--hh-shadow-soft);
    background: #dfecef;
}

.harbor-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, transform 1.4s ease-in-out;
    transform: scale(1.02);
}

.harbor-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.harbor-hero-slide img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.harbor-hero-slider__dots,
.harbor-hero-slider__dot {
    display: none !important;
}

/* ========================================
   HOME TRUST STRIP
======================================== */
.harbor-home-trust {
    background: #ffffff;
    padding: 0 24px 32px;
}

.harbor-home-trust__inner {
    max-width: var(--hh-max-width);
    margin: -18px auto 0;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(22,57,91,.10);
    border: 1px solid rgba(229,231,235,.9);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.harbor-home-trust__item {
    padding: 24px 22px;
    border-right: 1px solid #edf2f6;
}

.harbor-home-trust__item:last-child {
    border-right: none;
}

.harbor-home-trust__item strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--hh-navy);
    margin-bottom: 6px;
}

.harbor-home-trust__item span {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: #5f6b7a;
}

/* ========================================
   HOMEPAGE FEATURE CARDS
======================================== */
.harbor-cards {
    background: var(--hh-teal-deep);
    padding: 72px 24px 84px;
}

.harbor-cards__inner {
    max-width: var(--hh-max-width);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.harbor-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 28px 24px;
    box-shadow: 0 14px 36px rgba(11,37,56,.12);
    border: 1px solid rgba(229,231,235,.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .22s ease, box-shadow .22s ease;
    min-height: 100%;
}

.harbor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(11,37,56,.18);
}

.harbor-card--featured {
    border-top: 5px solid var(--hh-teal);
    padding-top: 32px;
}

.harbor-card__icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--hh-teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--hh-teal);
}

.harbor-card__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--hh-navy);
    margin: 0 0 18px;
    line-height: 1.25;
}

.harbor-card__list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    width: 100%;
    text-align: left;
}

.harbor-card__list li {
    font-size: 15px;
    color: #4b5563;
    padding: 9px 0;
    border-bottom: 1px solid #edf2f6;
    font-weight: 500;
    line-height: 1.5;
}

.harbor-card__list li:last-child {
    border-bottom: none;
}

.harbor-card__list--checks li::before {
    content: "✓ ";
    color: var(--hh-teal);
    font-weight: 800;
}

.harbor-card__note {
    font-size: 14px;
    color: #7b8794;
    font-style: italic;
    margin: 0 0 18px;
    line-height: 1.65;
}

.harbor-card__btn {
    width: 100%;
    margin-top: auto;
}

/* ========================================
   HOME STORY / VALUE BAND
======================================== */
.harbor-home-story {
    background: var(--hh-navy);
    color: #ffffff;
    padding: 72px 24px;
}

.harbor-home-story__inner {
    max-width: var(--hh-max-width);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.harbor-home-story__content h2 {
    margin: 0 0 16px;
    font-size: clamp(32px, 3.2vw, 46px);
    line-height: 1.12;
    font-weight: 900;
    color: #ffffff;
}

.harbor-home-story__content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.85;
    color: #d6e1ec;
}

.harbor-home-story__points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.harbor-home-story__point {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 22px;
}

.harbor-home-story__point h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 800;
}

.harbor-home-story__point p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #d6e1ec;
}

/* ========================================
   HOME CTA
======================================== */
.harbor-home-cta {
    background: var(--hh-teal-light);
    padding: 64px 24px 72px;
}

.harbor-home-cta__inner {
    max-width: 920px;
    margin-inline: auto;
    text-align: center;
}

.harbor-home-cta__inner h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.14;
    font-weight: 900;
    color: var(--hh-navy);
}

.harbor-home-cta__inner p {
    margin: 0 auto 24px;
    max-width: 720px;
    font-size: 18px;
    line-height: 1.8;
    color: #4e5b68;
}

.harbor-home-cta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ========================================
   PAGE HERO / SERVICES / ABOUT
======================================== */
.harbor-page-hero {
    background: linear-gradient(105deg, var(--hh-cream) 52%, var(--hh-teal-light) 52%);
    padding: 64px 0 56px;
}

.harbor-page-hero__inner {
    max-width: var(--hh-max-width);
    margin-inline: auto;
    padding-inline: 48px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: 44px;
    align-items: center;
}

.harbor-page-hero__eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--hh-teal);
    margin: 0 0 12px;
}

.harbor-page-hero__title {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 900;
    color: var(--hh-navy);
    margin: 0 0 16px;
}

.harbor-page-hero__text {
    font-size: 18px;
    line-height: 1.75;
    color: #4e5b68;
    margin: 0 0 28px;
    max-width: 620px;
}

.harbor-page-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.harbor-page-hero__image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: var(--hh-shadow-soft);
    object-fit: cover;
    max-height: 520px;
}

/* Intro cards */
.harbor-service-intro {
    padding: 56px 24px 28px;
    background: #fff;
}

.harbor-service-intro__inner {
    max-width: var(--hh-max-width);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.harbor-service-intro__card {
    background: #fff;
    border: 1px solid var(--hh-border);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(22,57,91,.06);
}

.harbor-service-intro__card h2 {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 800;
    color: var(--hh-navy);
}

.harbor-service-intro__card p,
.harbor-service-intro__card li {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.75;
}

.harbor-service-intro__card ul {
    margin: 0;
    padding-left: 18px;
}

.harbor-service-intro__card li::marker {
    color: var(--hh-teal);
}

.harbor-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.harbor-check-list li {
    margin-bottom: 10px;
    font-weight: 600;
    color: #16395b;
    line-height: 1.6;
}

/* Services grid */
.harbor-services-grid {
    padding: 28px 24px 64px;
    background: #fff;
}

.harbor-services-grid__inner {
    max-width: var(--hh-max-width);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.harbor-service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #e6eef2;
    box-shadow: 0 10px 30px rgba(22,57,91,.08);
    transition: all .25s ease;
}

.harbor-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hh-shadow-card-hover);
}

.harbor-service-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #e8f6f8;
    color: var(--hh-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
}

.harbor-service-card h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--hh-navy);
    margin: 0 0 14px;
}

.harbor-service-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
    margin: 0 0 18px;
}

.harbor-service-card ul {
    margin: 0;
    padding-left: 18px;
}

.harbor-service-card li {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 4px;
}

.harbor-service-card li::marker {
    color: var(--hh-teal);
}

/* Important note */
.harbor-services-note {
    padding: 0 24px 54px;
    background: #fff;
}

.harbor-services-note__inner {
    max-width: var(--hh-max-width);
    margin-inline: auto;
}

.harbor-services-note__box {
    background: var(--hh-warm-note);
    border: 2px solid var(--hh-warm-note-border);
    border-radius: 18px;
    padding: 28px 30px;
    font-weight: 600;
}

.harbor-services-note__box h2 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--hh-navy);
}

.harbor-services-note__box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
    font-weight: 600;
}

/* Coverage section */
.harbor-coverage-section {
    padding: 64px 24px;
    background: var(--hh-teal-light);
}

.harbor-coverage-section__inner {
    max-width: var(--hh-max-width);
    margin-inline: auto;
}

.harbor-coverage-section__content {
    max-width: 820px;
}

.harbor-section-kicker {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--hh-teal);
}

.harbor-section-kicker--light {
    color: #9ad44c;
}

.harbor-coverage-section h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.15;
    font-weight: 900;
    color: var(--hh-navy);
}

.harbor-coverage-section p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #4e5b68;
}

.harbor-coverage-list {
    columns: 2;
    column-gap: 40px;
    margin: 0 0 28px;
    padding-left: 18px;
}

.harbor-coverage-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    break-inside: avoid;
}

.harbor-coverage-list li::marker {
    color: var(--hh-teal);
}

/* About */
.harbor-about-section {
    background: #ffffff;
    padding: 64px 24px;
}

.harbor-about-section--soft {
    background: var(--hh-teal-light);
}

.harbor-about-section__inner {
    max-width: var(--hh-max-width);
    margin-inline: auto;
}

.harbor-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.harbor-about-card {
    background: #ffffff;
    border: 1px solid var(--hh-border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 28px rgba(22,57,91,.06);
}

.harbor-about-card h2 {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.2;
    color: var(--hh-navy);
    font-weight: 900;
}

.harbor-about-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.85;
    color: #4e5b68;
}

.harbor-values-band {
    background: var(--hh-navy);
    color: #ffffff;
    padding: 72px 24px;
}

.harbor-values-band__inner {
    max-width: var(--hh-max-width);
    margin-inline: auto;
}

.harbor-values-band h2 {
    margin: 0 0 28px;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.14;
    font-weight: 900;
    color: #ffffff;
}

.harbor-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.harbor-value {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 24px;
}

.harbor-value h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.harbor-value p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #d7e2ee;
}

.harbor-about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.harbor-about-columns h2 {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.2;
    color: var(--hh-navy);
    font-weight: 900;
}

.harbor-about-list {
    margin: 0;
    padding-left: 18px;
}

.harbor-about-list li {
    font-size: 17px;
    line-height: 1.9;
    color: #4e5b68;
}

/* ========================================
   FOOTER
======================================== */
.harbor-footer {
    background: #0f2540;
    color: #b7c6d8;
    font-size: 14px;
}

.harbor-footer__top {
    max-width: 1240px;
    margin-inline: auto;
    padding: 64px 24px 40px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
}

.harbor-footer__logo-text {
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    display: block;
    margin-bottom: 14px;
}

.harbor-footer__logo-text small {
    font-size: 13px;
    font-weight: 700;
    color: var(--hh-teal);
    letter-spacing: .7px;
}

.harbor-footer__tagline {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.8;
    color: #d4deea;
}

.harbor-footer__service-area {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #8fb2cc;
}

.harbor-footer__nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.harbor-footer__col h3 {
    font-size: 13px;
    font-weight: 800;
    color: #9ad44c;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin: 0 0 16px;
}

.harbor-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.harbor-footer__col li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.harbor-footer__col a {
    color: #ffffff;
    font-weight: 500;
    transition: color .18s ease;
}

.harbor-footer__col a:hover {
    color: var(--hh-teal);
}

.harbor-footer__cta-link {
    display: inline-block;
    margin-top: 6px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--hh-green);
    color: #fff !important;
    font-weight: 800 !important;
}

.harbor-footer__cta-link:hover {
    background: var(--hh-green-dark);
}

.harbor-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    padding: 18px 24px 24px;
    font-size: 13px;
    color: #89a0b8;
}

.harbor-footer__bottom a {
    color: #c8d7e6;
    margin-left: 6px;
}

/* ========================================
   WP ADMIN BAR OFFSET
======================================== */
body.admin-bar .harbor-topbar {
    top: 32px;
}

body.admin-bar .harbor-site-header {
    top: calc(var(--hh-topbar-height) + 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .harbor-topbar {
        top: 46px;
    }

    body.admin-bar .harbor-site-header {
        top: calc(var(--hh-topbar-height) + 46px);
    }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1180px) {
    .harbor-nav__menu li a {
        padding: 11px 12px;
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .harbor-hero,
    .harbor-page-hero {
        background: var(--hh-cream);
    }

    .harbor-hero__inner,
    .harbor-page-hero__inner,
    .harbor-service-intro__inner,
    .harbor-services-grid__inner,
    .harbor-about-grid,
    .harbor-about-columns {
        grid-template-columns: 1fr;
    }

    .harbor-home-trust__inner,
    .harbor-home-story__inner {
        grid-template-columns: 1fr 1fr;
    }

    .harbor-home-story__points,
    .harbor-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .harbor-hero__inner,
    .harbor-page-hero__inner {
        padding-inline: 28px;
        gap: 34px;
    }

    .harbor-hero__image,
    .harbor-page-hero__image {
        order: -1;
    }

    .harbor-cards__inner {
        grid-template-columns: 1fr 1fr;
    }

    .harbor-footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .harbor-footer__nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .harbor-coverage-list {
        columns: 1;
    }
}

@media (max-width: 980px) {
    :root {
        --hh-topbar-height: 40px;
    }

    .harbor-topbar__inner {
        padding: 0 16px;
        gap: 12px;
    }

    .harbor-site-header__inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
        min-height: 76px;
        padding: 12px 16px;
        gap: 16px;
    }

    .harbor-site-header__logo-img {
        height: 50px;
    }

    .harbor-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--hh-navy);
        padding: 16px;
        box-shadow: 0 18px 32px rgba(22,57,91,.18);
        border-top: 1px solid rgba(255,255,255,.08);
    }

    .harbor-nav.is-open {
        display: block;
    }

    .harbor-nav__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .harbor-nav__menu li a {
        color: #fff;
        padding: 15px 14px;
        font-size: 16px;
        line-height: 1.35;
        border-radius: 12px;
    }

    .harbor-nav__menu li a:hover,
    .harbor-nav__menu li.current-menu-item > a,
    .harbor-nav__menu li.current_page_item > a {
        background: var(--hh-teal);
        color: #fff !important;
    }

    .harbor-header-cta {
        display: none;
    }

    .harbor-mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .harbor-topbar__text,
    .harbor-topbar__link {
        font-size: 13px;
    }

    .harbor-announcement-bar {
        font-size: 13px;
        padding: 10px 12px;
    }

    .harbor-hero,
    .harbor-page-hero {
        padding: 28px 0 34px;
    }

    .harbor-hero__inner,
    .harbor-page-hero__inner {
        padding-inline: 18px;
        gap: 22px;
    }

    .harbor-hero__eyebrow,
    .harbor-page-hero__eyebrow {
        font-size: 11px;
        letter-spacing: 1.3px;
    }

    .harbor-hero__heading,
    .harbor-page-hero__title {
        font-size: 32px;
        line-height: 1.1;
    }

    .harbor-hero__sub,
    .harbor-page-hero__text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .harbor-hero__ctas,
    .harbor-page-hero__actions,
    .harbor-home-cta__actions,
    .harbor-services-cta__actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 22px;
    }

    .harbor-btn {
        width: 100%;
        text-align: center;
    }

    .harbor-hero-slider {
        min-height: 300px;
        border-radius: 18px;
    }

    .harbor-hero-slide img {
        min-height: 300px;
        object-position: center top;
    }

    .harbor-home-trust {
        padding: 0 16px 26px;
    }

    .harbor-home-trust__inner,
    .harbor-home-story__inner,
    .harbor-home-story__points,
    .harbor-values-grid {
        grid-template-columns: 1fr;
    }

    .harbor-home-trust__item {
        border-right: none;
        border-bottom: 1px solid #edf2f6;
    }

    .harbor-home-trust__item:last-child {
        border-bottom: none;
    }

    .harbor-home-story,
    .harbor-home-cta,
    .harbor-cards,
    .harbor-service-intro,
    .harbor-services-grid,
    .harbor-services-note,
    .harbor-coverage-section,
    .harbor-services-cta,
    .harbor-about-section,
    .harbor-values-band,
    .harbor-footer__top {
        padding-left: 16px;
        padding-right: 16px;
    }

    .harbor-home-story {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .harbor-home-cta {
        padding-top: 48px;
        padding-bottom: 54px;
    }

    .harbor-cards {
        padding-top: 42px;
        padding-bottom: 44px;
    }

    .harbor-cards__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .harbor-card,
    .harbor-service-intro__card,
    .harbor-service-card,
    .harbor-services-note__box,
    .harbor-about-card,
    .harbor-value {
        padding: 24px 20px;
    }

    .harbor-card__title,
    .harbor-service-intro__card h2,
    .harbor-service-card h2,
    .harbor-services-note__box h2,
    .harbor-about-card h2,
    .harbor-about-columns h2,
    .harbor-home-story__content h2,
    .harbor-home-cta__inner h2,
    .harbor-values-band h2 {
        font-size: 22px;
    }

    .harbor-home-story__content p,
    .harbor-home-cta__inner p,
    .harbor-coverage-section p,
    .harbor-services-cta p,
    .harbor-about-card p,
    .harbor-about-list li {
        font-size: 16px;
    }

    .harbor-footer__nav {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .harbor-topbar__text,
    .harbor-topbar__link {
        font-size: 12px;
    }

    .harbor-site-header__inner {
        padding: 12px 14px;
        min-height: 72px;
    }

    .harbor-site-header__logo-img {
        height: 44px;
    }

    .harbor-announcement-bar {
        font-size: 12px;
        padding: 9px 10px;
    }

    .harbor-hero,
    .harbor-page-hero {
        padding-top: 22px;
    }

    .harbor-hero__inner,
    .harbor-page-hero__inner {
        padding-inline: 14px;
    }

    .harbor-hero__heading,
    .harbor-page-hero__title {
        font-size: 28px;
    }

    .harbor-hero__sub,
    .harbor-page-hero__text {
        font-size: 15px;
    }

    .harbor-hero-slider,
    .harbor-hero-slide img {
        min-height: 260px;
    }

    .harbor-footer__nav {
        grid-template-columns: 1fr;
    }
}