/* ============================================================
   HOME - CLINICAL VARIANT (TEAL)
   File: assets/css/home-clinical.css
   Scope: .hc-page — all rules are prefixed to avoid conflicts
   ============================================================ */

/* ── Reset & Base ──────────────────────────────────────────── */
.hc-page *,
.hc-page *::before,
.hc-page *::after { box-sizing: border-box; margin: 0; padding: 0; }

.hc-page {
    --hc-blue:       #0061a4;
    --hc-teal:       #2c9aa0;
    --hc-teal-dark:  #237b80;
    --hc-dark:       #1b1c1c;
    --hc-gray:       #5e5e5e;
    --hc-gray-lt:    #64748b;
    --hc-gray-nav:   #475569;
    --hc-bg:         #fbf9f8;
    --hc-bg-alt:     #f5f3f3;
    --hc-bg-form:    #efeded;
    --hc-bg-footer:  #f8fafc;
    --hc-border:     #e2e8f0;
    --hc-badge-bg:   #d1e4ff;
    --hc-badge-text: #001d36;
    --hc-white:      #ffffff;
    --hc-font-head:  'Plus Jakarta Sans', sans-serif;
    --hc-font-body:  'Inter', sans-serif;
    --hc-shadow:     0 40px 40px -5px rgba(27,28,28,0.06);
    --hc-radius:     8px;
    --hc-radius-lg:  16px;

    font-family: var(--hc-font-body);
    background: var(--hc-bg);
    color: var(--hc-dark);
    -webkit-font-smoothing: antialiased;
}

/* ── Container ─────────────────────────────────────────────── */
.hc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

/* ── Shared Buttons ────────────────────────────────────────── */
.hc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hc-font-head);
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
    border: none;
}
.hc-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.hc-btn--teal {
    background: linear-gradient(160deg, var(--hc-teal) 0%, var(--hc-teal-dark) 100%);
    color: var(--hc-white);
    padding: 16px 32px;
    font-size: 18px;
    line-height: 28px;
}
.hc-btn--outline-dark {
    background: var(--hc-white);
    color: var(--hc-blue);
    border: 1px solid rgba(186,198,202,0.2);
    padding: 17px 33px;
    font-size: 18px;
    line-height: 28px;
}
.hc-btn--outline-white {
    background: transparent;
    color: var(--hc-white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 17px 1px;
    font-size: 16px;
    width: 100%;
}
.hc-btn--submit {
    background: linear-gradient(174deg, var(--hc-teal) 0%, var(--hc-teal-dark) 100%) !important;
    color: var(--hc-white) !important;
    border: none !important;
    outline: none;
    font-family: var(--hc-font-head);
    font-weight: 800;
    font-size: 20px;
    padding: 20px;
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 10px 15px -3px rgba(44,154,160,0.2), 0 4px 6px -4px rgba(44,154,160,0.2);
}

/* ── Shared label line ─────────────────────────────────────── */
.hc-label-line {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hc-label-line__bar {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--hc-teal);
    flex-shrink: 0;
}
.hc-label-line__text {
    font-family: var(--hc-font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--hc-teal);
}

/* ── Shared link ───────────────────────────────────────────── */
.hc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hc-font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--hc-blue);
    text-decoration: none;
}
.hc-link:hover { text-decoration: underline; }
.hc-link i { font-size: 13px; }

/* ── Teal accent ───────────────────────────────────────────── */
.hc-teal { color: var(--hc-teal); }

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.hc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.7);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}
.hc-header.hc-header--scrolled {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.hc-nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 0 32px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.hc-nav__logo {
    font-family: var(--hc-font-body);
    font-weight: 600;
    font-size: 24px;
    color: var(--hc-blue);
    letter-spacing: -1.2px;
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.hc-nav__links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}
.hc-nav__links a {
    font-family: var(--hc-font-head);
    font-weight: 600;
    font-size: 16px;
    color: var(--hc-gray-nav);
    text-decoration: none;
    letter-spacing: -0.4px;
    padding-bottom: 4px;
    transition: color 0.2s;
}
.hc-nav__links a:hover { color: var(--hc-blue); }
.hc-nav__links .current-menu-item > a,
.hc-nav__links .current-menu-ancestor > a {
    border-bottom: 2px solid var(--hc-teal);
    padding-bottom: 6px !important;
}
.hc-nav__links .menu-item-has-children { position: relative; }
.hc-nav__links .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    box-shadow: 0 4px 24px rgba(27,28,28,0.12);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    min-width: 180px;
    z-index: 200;
    display: none;
}
.hc-nav__links .menu-item-has-children:hover .sub-menu { display: block; }
.hc-nav__links .sub-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}
.hc-nav__links .sub-menu a {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    display: block;
    border-bottom: none !important;
}
.hc-nav__links .sub-menu a:hover {
    color: var(--hc-teal);
    background: rgba(44,154,160,0.06);
}

.hc-nav__cta {
    padding: 10px 24px;
    font-size: 16px;
    flex-shrink: 0;
}

.hc-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hc-nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--hc-dark);
    transition: transform 0.3s, opacity 0.3s;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hc-hero {
    position: relative;
    min-height: 931px;
    display: flex;
    align-items: center;
    background: var(--hc-bg);
    overflow: hidden;
    padding-top: 80px;
}

.hc-hero__bg {
    position: absolute;
    inset: 0;
    opacity: 0.9;
}
.hc-hero__bg img {
    width: 100%;
    height: 138.98%;
    object-fit: cover;
    position: absolute;
    top: -19.49%;
    left: 0;
}

.hc-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--hc-bg) 0%, rgba(251,249,248,0.4) 50%, rgba(251,249,248,0) 100%);
}

.hc-hero .hc-container {
    position: relative;
    z-index: 1;
    padding-top: 255px;
    padding-bottom: 255px;
}

.hc-hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 672px;
}

.hc-badge {
    display: inline-block;
    align-self: flex-start;
    background: var(--hc-badge-bg);
    color: var(--hc-badge-text);
    font-family: var(--hc-font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
}

.hc-hero__heading {
    font-family: var(--hc-font-head);
    font-weight: 800;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -3.6px;
    color: var(--hc-dark);
}

.hc-hero__sub {
    font-family: var(--hc-font-body);
    font-size: 20px;
    line-height: 28px;
    color: var(--hc-gray);
    max-width: 512px;
    padding-top: 8px;
}

.hc-hero__ctas {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.hc-services {
    background: var(--hc-bg-alt);
    padding: 128px 0;
}

.hc-services__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px;
}
.hc-services__header-text { max-width: 576px; }

.hc-services__title {
    font-family: var(--hc-font-head);
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.9px;
    color: var(--hc-blue);
    margin-bottom: 24px;
}
.hc-services__sub {
    font-family: var(--hc-font-body);
    font-size: 18px;
    line-height: 28px;
    color: var(--hc-gray);
}

.hc-services__dots {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}
.hc-dot {
    display: block;
    height: 4px;
    background: rgba(44,154,160,0.3);
    border-radius: 2px;
    width: 16px;
}
.hc-dot--active {
    width: 48px;
    background: var(--hc-teal);
}

/* ── Bento Grid ────────────────────────────────────────────── */
.hc-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 32px;
}

/* S1 — Janitorial, spans 2 cols */
.hc-bento__s1 {
    grid-column: 1 / span 2;
    grid-row: 1;
    background: var(--hc-white);
    border-radius: var(--hc-radius);
    overflow: hidden;
    box-shadow: var(--hc-shadow);
    display: flex;
    flex-direction: column;
}
.hc-bento__img-wrap { overflow: hidden; height: 450px; flex-shrink: 0; }
.hc-bento__img-wrap img { width: 100%; height: 177.78%; object-fit: cover; margin-top: -38.89%; display: block; }
.hc-bento__s1-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hc-bento__s1-title {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hc-bento__s1-title i { font-size: 22px; color: var(--hc-teal); flex-shrink: 0; }
.hc-bento__s1-title h3 {
    font-family: var(--hc-font-head);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--hc-dark);
}
.hc-bento__s1-body p {
    font-size: 16px;
    line-height: 24px;
    color: var(--hc-gray);
}

/* S2 — Industrial Painting */
.hc-bento__s2 {
    grid-column: 3;
    grid-row: 1;
    background: var(--hc-white);
    border-radius: var(--hc-radius);
    padding: 32px;
    box-shadow: var(--hc-shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hc-bento__icon-bg {
    width: 64px;
    height: 64px;
    background: var(--hc-badge-bg);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hc-bento__icon-bg i { font-size: 24px; color: var(--hc-blue); }
.hc-bento__s2 h3 {
    font-family: var(--hc-font-head);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--hc-dark);
    padding-top: 16px;
}
.hc-bento__s2 p {
    font-size: 16px;
    line-height: 24px;
    color: var(--hc-gray);
}
.hc-bento__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
}
.hc-bento__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--hc-dark);
}
.hc-bento__list li i { font-size: 12px; color: var(--hc-teal); flex-shrink: 0; }

/* S3 — Post-Construction (blue bg) */
.hc-bento__s3 {
    grid-column: 1;
    grid-row: 2;
    background: var(--hc-blue);
    border-radius: var(--hc-radius);
    padding: 32px;
    box-shadow: var(--hc-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}
.hc-bento__s3-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hc-bento__s3-top i { font-size: 26px; color: rgba(255,255,255,0.9); }
.hc-bento__s3 h3 {
    font-family: var(--hc-font-head);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--hc-white);
    padding-top: 8px;
}
.hc-bento__s3 p {
    font-size: 16px;
    line-height: 24px;
    color: rgba(255,255,255,0.8);
}
.hc-bento__s3 .hc-btn--outline-white { margin-top: 48px; }

/* S4 — Floor Remediation */
.hc-bento__s4 {
    grid-column: 2 / span 2;
    grid-row: 2;
    background: var(--hc-white);
    border-radius: var(--hc-radius);
    overflow: hidden;
    box-shadow: var(--hc-shadow);
    display: flex;
    height: 400px;
}
.hc-bento__s4-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    gap: 0;
}
.hc-bento__s4-content h3 {
    font-family: var(--hc-font-head);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--hc-dark);
    margin-bottom: 16px;
}
.hc-bento__s4-content p {
    font-size: 16px;
    line-height: 24px;
    color: var(--hc-gray);
    margin-bottom: 24px;
}
.hc-bento__stats {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hc-stat__value {
    font-family: var(--hc-font-body);
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: var(--hc-teal);
}
.hc-stat__label {
    font-family: var(--hc-font-body);
    font-size: 12px;
    line-height: 16px;
    color: var(--hc-gray);
    text-transform: uppercase;
    letter-spacing: -0.6px;
}
.hc-stat__divider {
    width: 1px;
    height: 40px;
    background: rgba(186,198,202,0.3);
}
.hc-bento__s4-img {
    flex: 1;
    overflow: hidden;
}
.hc-bento__s4-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ═══════════════════════════════════════════════════════════
   CLUSTERS
   ═══════════════════════════════════════════════════════════ */
.hc-clusters {
    background: var(--hc-bg-alt);
    padding: 128px 0;
}

.hc-clusters__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.hc-clusters__title {
    font-family: var(--hc-font-head);
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.9px;
    color: var(--hc-blue);
    margin-bottom: 16px;
}

.hc-clusters__sub {
    font-family: var(--hc-font-body);
    font-size: 18px;
    line-height: 28px;
    color: var(--hc-gray);
}

.hc-clusters__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hc-cluster-card {
    background: var(--hc-white);
    border-radius: var(--hc-radius-lg);
    padding: 32px;
    box-shadow: var(--hc-shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.hc-cluster-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -8px rgba(27,28,28,0.12);
}

.hc-cluster-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--hc-teal) 0%, var(--hc-teal-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hc-cluster-card__icon i {
    font-size: 22px;
    color: var(--hc-white);
}

.hc-cluster-card__title {
    font-family: var(--hc-font-head);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--hc-dark);
}

.hc-cluster-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.hc-cluster-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 20px;
    color: var(--hc-gray);
}
.hc-cluster-card__list li i {
    font-size: 11px;
    color: var(--hc-teal);
    flex-shrink: 0;
}

.hc-cluster-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--hc-font-body);
    font-weight: 600;
    font-size: 13px;
    color: var(--hc-teal);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-top: 1px solid var(--hc-border);
    padding-top: 16px;
    margin-top: auto;
    transition: color 0.2s;
}
.hc-cluster-card__link:hover { color: var(--hc-teal-dark); }
.hc-cluster-card__link span {
    font-weight: 400;
    color: var(--hc-gray);
}

/* ═══════════════════════════════════════════════════════════
   LEADERSHIP
   ═══════════════════════════════════════════════════════════ */
.hc-leadership {
    background: var(--hc-bg);
    padding: 128px 0;
    overflow: hidden;
}

.hc-leadership__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hc-leadership__img-wrap {
    position: relative;
}
.hc-leadership__img-decor {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 256px;
    height: 256px;
    background: rgba(209,228,255,0.5);
    border-radius: 12px;
    filter: blur(32px);
    pointer-events: none;
}
.hc-leadership__img-card {
    border-radius: var(--hc-radius-lg);
    overflow: hidden;
    box-shadow: var(--hc-shadow);
    aspect-ratio: 4/5;
    background: transparent;
    /* Force GPU layer — fixes Safari overflow:hidden + border-radius not clipping */
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.hc-leadership__img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hc-leadership__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hc-leadership__name {
    font-family: var(--hc-font-head);
    font-weight: 800;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -1.2px;
    color: var(--hc-blue);
}

.hc-leadership__quote {
    font-family: var(--hc-font-body);
    font-weight: 500;
    font-style: italic;
    font-size: 20px;
    line-height: 32.5px;
    color: var(--hc-dark);
    padding-top: 8px;
    border: none;
    quotes: none;
}

.hc-leadership__bio {
    font-family: var(--hc-font-body);
    font-size: 18px;
    line-height: 29.25px;
    color: var(--hc-gray);
    padding-top: 8px;
}

.hc-leadership__byline {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
}
.hc-leadership__avatar {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    opacity: 0.5;
    filter: grayscale(100%);
}
.hc-leadership__avatar img { width: 100%; height: 100%; object-fit: cover; }
.hc-leadership__title {
    display: block;
    font-family: var(--hc-font-head);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--hc-blue);
}
.hc-leadership__org {
    display: block;
    font-family: var(--hc-font-body);
    font-size: 14px;
    line-height: 20px;
    color: var(--hc-gray);
}

/* ═══════════════════════════════════════════════════════════
   CONSULTATION FORM
   ═══════════════════════════════════════════════════════════ */
.hc-contact {
    background: var(--hc-bg-form);
    padding: 128px 0;
}

.hc-contact__card {
    background: var(--hc-white);
    border-radius: var(--hc-radius-lg);
    box-shadow: var(--hc-shadow);
    overflow: hidden;
    display: flex;
}

/* Left panel */
.hc-contact__left {
    background: var(--hc-blue);
    padding: 64px;
    width: 40%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}
.hc-contact__heading {
    font-family: var(--hc-font-head);
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
    color: var(--hc-white);
    margin-bottom: 24px;
}
.hc-contact__sub {
    font-size: 18px;
    line-height: 29.25px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}
.hc-contact__perks {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hc-perk {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.hc-perk i { font-size: 20px; color: rgba(255,255,255,0.8); flex-shrink: 0; margin-top: 2px; }
.hc-perk strong {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--hc-white);
}
.hc-perk span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255,255,255,0.6);
}
.hc-contact__phone {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 33px;
    margin-top: auto;
}
.hc-contact__phone-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
}
.hc-contact__phone-number {
    display: block;
    font-family: var(--hc-font-head);
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: var(--hc-white);
}

/* Right panel — form */
.hc-contact__right {
    flex: 1;
    padding: 64px;
}

.hc-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.hc-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.hc-form__group {
    display: flex;
    flex-direction: column;
    gap: 8.5px;
}
.hc-form__group label {
    font-family: var(--hc-font-body);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--hc-blue);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.hc-form__group input,
.hc-form__group textarea {
    background: var(--hc-bg-alt);
    border: none;
    outline: none;
    padding: 18px 16px;
    font-family: var(--hc-font-body);
    font-size: 16px;
    color: var(--hc-dark);
    width: 100%;
    border-radius: 0;
    transition: box-shadow 0.2s;
}
.hc-form__group input::placeholder,
.hc-form__group textarea::placeholder { color: #6b7280; }
.hc-form__group input:focus,
.hc-form__group textarea:focus { box-shadow: inset 0 0 0 2px var(--hc-teal); }
.hc-form__group textarea {
    min-height: 128px;
    resize: vertical;
    padding-bottom: 88px;
}

.hc-select-wrap { position: relative; }
.hc-select-wrap select {
    background: var(--hc-bg-alt);
    border: none;
    outline: none;
    padding: 16px 16px;
    font-family: var(--hc-font-body);
    font-size: 16px;
    color: var(--hc-dark);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    height: 56px;
}
.hc-select-wrap__arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 13px;
    color: var(--hc-gray);
}

/* Required asterisk */
.hc-req {
    color: #dc2626;
    font-weight: 700;
    margin-left: 2px;
}

/* Required fields note */
.hc-form__required-note {
    font-size: 13px;
    color: var(--hc-gray-lt);
    margin-bottom: 16px;
}

/* Field-level error message */
.hc-field-error {
    display: block;
    font-size: 12px;
    color: #dc2626;
    margin-top: 5px;
    min-height: 16px;
}

/* Invalid field highlight */
.hc-form__group input.hc-field--invalid,
.hc-form__group select.hc-field--invalid,
.hc-form__group textarea.hc-field--invalid {
    box-shadow: inset 0 0 0 2px #dc2626 !important;
}

.hc-form-success {
    background: rgba(44,154,160,0.08);
    border-left: 4px solid var(--hc-teal);
    padding: 32px;
    border-radius: 4px;
}
.hc-form-success h3 {
    font-family: var(--hc-font-head);
    font-weight: 700;
    font-size: 20px;
    color: var(--hc-teal-dark);
    margin-bottom: 8px;
}
.hc-form-success p { font-size: 16px; color: var(--hc-gray); }
.hc-form-error {
    background: rgba(220,38,38,0.06);
    border-left: 4px solid #dc2626;
    padding: 16px;
    font-size: 14px;
    color: #dc2626;
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.hc-footer {
    background: var(--hc-bg-alt);
    padding: 48px 0;
}

.hc-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.hc-footer__logo {
    display: block;
    font-family: var(--hc-font-head);
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #1e3a8a;
    text-decoration: none;
    color: var(--hc-teal);
    font-size: 20px;
    margin-bottom: 0;
}
.hc-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hc-footer__brand p {
    font-size: 14px;
    line-height: 23px;
    color: var(--hc-dark);
}
.hc-footer__social {
    display: flex;
    gap: 16px;
    align-items: center;
}
.hc-footer__social a {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--hc-dark);
    transition: color 0.2s;
}
.hc-footer__social a:hover { color: var(--hc-teal); }

.hc-footer__col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hc-footer__col h4 {
    font-family: var(--hc-font-head);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--hc-teal);
    margin-bottom: 0;
}
.hc-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.hc-footer__col ul a {
    font-size: 16px;
    line-height: 24px;
    color: var(--hc-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.hc-footer__col ul a:hover { color: var(--hc-teal); }
.hc-footer__copy {
    font-size: 14px;
    line-height: 20px;
    color: var(--hc-gray-lt);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hc-bento {
        grid-template-columns: 1fr 1fr;
    }
    .hc-bento__s1 { grid-column: 1 / span 2; grid-row: 1; }
    .hc-bento__s2 { grid-column: 1; grid-row: 2; }
    .hc-bento__s3 { grid-column: 2; grid-row: 2; }
    .hc-bento__s4 { grid-column: 1 / span 2; grid-row: 3; }
    .hc-leadership__grid { grid-template-columns: 1fr; gap: 48px; }
    .hc-clusters__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hc-nav__links,
    .hc-nav__cta { display: none; }
    .hc-nav__links.hc-nav--open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.97);
        padding: 24px 32px;
        gap: 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .hc-nav__links .sub-menu {
        position: static;
        display: block;
        box-shadow: none;
        border-radius: 0;
        padding: 4px 0 4px 16px;
        min-width: unset;
        border-left: 2px solid var(--hc-teal);
        margin-top: 4px;
    }
    .hc-nav__toggle { display: flex; }

    .hc-hero__heading { font-size: 44px; line-height: 48px; letter-spacing: -2px; }
    .hc-hero .hc-container { padding-top: 120px; padding-bottom: 80px; }

    .hc-bento { grid-template-columns: 1fr; }
    .hc-bento__s1,
    .hc-bento__s2,
    .hc-bento__s3,
    .hc-bento__s4 { grid-column: 1; grid-row: auto; }
    .hc-bento__s4 { flex-direction: column; height: auto; }
    .hc-bento__s4-img { height: 240px; }

    .hc-contact__card { flex-direction: column; }
    .hc-contact__left { width: 100%; }

    .hc-footer__grid { grid-template-columns: 1fr 1fr; }
    .hc-form__row { grid-template-columns: 1fr; }

    .hc-services__header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hc-leadership__name { font-size: 36px; line-height: 40px; }
    .hc-clusters__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hc-container { padding: 0 16px; }
    .hc-hero__heading { font-size: 36px; line-height: 42px; }
    .hc-hero__ctas { flex-direction: column; }
    .hc-footer__grid { grid-template-columns: 1fr; }
    .hc-contact__left,
    .hc-contact__right { padding: 32px 24px; }
}
