/* ============================================================================
   HOMEPAGE V2 — AtlasGroup-style layout re-skinned with the houzzhunt
   corporate design system (see corporate.css for the variables used here).
   Every class is namespaced .hh2-* so this file cannot collide with the
   legacy homepage styles that still live in custom.css / corporate.css.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   0. Shared section rhythm
   ---------------------------------------------------------------------------- */
.hh2-section {
    padding: var(--c-section-y) 0;
}

.hh2-head {
    max-width: 720px;
    margin-bottom: clamp(32px, 4vw, 52px);
}

.hh2-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hh2-title {
    color: var(--c-ink);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 14px 0 0;
}

.hh2-sub {
    color: var(--c-body);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    margin: 14px 0 0;
}

/* pill buttons (screenshot uses slightly-rounded rectangles) */
.hh2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--c-radius-sm);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s var(--c-ease), color 0.25s var(--c-ease),
        transform 0.25s var(--c-ease), box-shadow 0.25s var(--c-ease);
}

.hh2-btn:hover {
    transform: translateY(-2px);
}

.hh2-btn svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.hh2-btn--accent {
    background: var(--c-accent);
    color: #fff;
}

.hh2-btn--accent:hover {
    background: var(--c-accent-700);
    color: #fff;
    box-shadow: 0 12px 26px rgba(9, 116, 127, 0.28);
}

.hh2-btn--dark {
    background: var(--c-accent);
    color: #fff;
}

.hh2-btn--dark:hover {
    background: #0b1a1f;
    color: #fff;
    box-shadow: 0 12px 26px rgba(16, 36, 42, 0.3);
}

.hh2-btn--gold {
    background: var(--c-gold);
    color: #0b3b40;
}

.hh2-btn--gold:hover {
    background: #e6ad4f;
    color: #0b3b40;
    box-shadow: 0 12px 26px rgba(237, 187, 104, 0.4);
}

/* pale-teal filled (reference hero primary) */
.hh2-btn--tint {
    background: #cfece7;
    color: #0b3b40;
}

.hh2-btn--tint:hover {
    background: #b9e6df;
    color: #0b3b40;
    box-shadow: 0 12px 26px rgba(9, 116, 127, 0.35);
}

/* white filled (reference hero secondary) */
.hh2-btn--white {
    background: #ffffff;
    color: #0b3b40;
}

.hh2-btn--white:hover {
    background: #eef4f3;
    color: #0b3b40;
    box-shadow: 0 12px 26px rgba(9, 116, 127, 0.35);
}

.hh2-btn--ghost {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-border);
}

.hh2-btn--ghost:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
}

/* ----------------------------------------------------------------------------
   1. HERO — deep-teal band: copy left, borderless checklist + actions right,
      full-width media below (reference: AtlasGroup hero, houzzhunt palette)
   ---------------------------------------------------------------------------- */
.hh2-hero {
    /* deep teal from the houzzhunt palette (used on gold-button text) — NOT the
       near-black --c-accent, per design feedback */
    background: #0b3b40;
    padding: clamp(44px, 6vw, 84px) 0 clamp(40px, 5vw, 72px);
}

.hh2-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
}

/* corporate.css forces heading colours to #222 !important (incl. `h1 *`), so
   the exceptions below need !important + higher specificity to win. */
.hh2-hero .hh2-hero-title {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-weight: 700;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 18px;
}

.hh2-hero .hh2-hero-title em {
    font-style: normal;
    color: #b9e6df !important; /* pale-teal tint of the accent */
    -webkit-text-fill-color: #b9e6df !important;
}

.hh2-hero-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

.hh2-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

/* right checklist — no card box, just a vertical divider (per reference) */
.hh2-hero-panel {
    color: #fff;
    padding-inline-start: clamp(24px, 3vw, 44px);
    border-inline-start: 1px solid rgba(255, 255, 255, 0.22);
}

.hh2-hero-check {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.94);
}

.hh2-hero-check:first-child {
    padding-top: 0;
}

.hh2-hero-check:last-of-type {
    border-bottom: none;
}

.hh2-hero-check i {
    flex: 0 0 auto;
    color: #b9e6df;
    font-size: 22px;
    line-height: 1;
}

/* full-bleed media band (own light section below the teal hero — no dark
   backdrop, no dark gradient, per design feedback) */
.hh2-media {
    background: var(--c-surface);
    padding-bottom: clamp(40px, 5vw, 72px);
}

.hh2-hero-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: clamp(320px, 52vw, 720px);
}

.hh2-hero-media video,
.hh2-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----------------------------------------------------------------------------
   2. TRIO — Buy / Sell / Rent frosted-glass cards overlapping the media band
   ---------------------------------------------------------------------------- */
.hh2-trio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.2vw, 32px);
    position: relative;
    z-index: 2;
    margin-top: clamp(-200px, -14vw, -110px);
}

.hh2-trio-item {
    padding: clamp(24px, 2.6vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--c-radius);
    box-shadow: var(--c-shadow-sm);
    transition: background 0.25s var(--c-ease), transform 0.25s var(--c-ease),
        box-shadow 0.25s var(--c-ease);
}

.hh2-trio-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-6px);
    box-shadow: var(--c-shadow);
}

.hh2-trio-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    transition: transform 0.25s var(--c-ease);
}

.hh2-trio-item:hover .hh2-trio-icon {
    transform: translateY(-4px);
}

.hh2-trio-icon svg {
    width: 34px;
    height: 34px;
}

.hh2-trio-item h3 {
    color: var(--c-ink);
    font-size: clamp(20px, 1.8vw, 25px);
    font-weight: 700;
    margin: 0 0 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--c-border);
    width: 100%;
}

.hh2-trio-item p {
    color: var(--c-body);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 16px;
}

.hh2-trio-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-accent);
    font-weight: 600;
    font-size: 14px;
}

.hh2-trio-item:hover .hh2-trio-link {
    color: var(--c-accent-700);
}

/* ----------------------------------------------------------------------------
   3. ABOUT — centered statement + image / blurb row
   ---------------------------------------------------------------------------- */
.hh2-about {
    background: var(--c-surface-2);
}

.hh2-about-statement {
    max-width: 900px;
    margin: 0 auto clamp(36px, 4.5vw, 60px);
    text-align: center;
}

.hh2-about-statement .hh2-title {
    font-size: clamp(24px, 2.8vw, 38px);
    line-height: 1.3;
}

.hh2-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(24px, 3.5vw, 56px);
    align-items: center;
}

.hh2-about-media {
    border-radius: var(--c-radius);
    overflow: hidden;
    box-shadow: var(--c-shadow-sm);
    height: clamp(280px, 30vw, 420px);
}

.hh2-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hh2-about-side p {
    color: var(--c-body);
    font-size: 15.5px;
    line-height: 1.75;
    margin: 0 0 24px;
}

/* ----------------------------------------------------------------------------
   4. SERVICES — header row + card carousel
   ---------------------------------------------------------------------------- */
.hh2-services-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(30px, 4vw, 48px);
}

.hh2-services-head .hh2-head {
    margin-bottom: 0;
}

.hh2-services-nav {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

.hh2-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--c-border);
    background: var(--c-surface);
    color: var(--c-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s var(--c-ease);
}

.hh2-nav-btn:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
}

.hh2-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: clamp(24px, 2.4vw, 34px);
    text-decoration: none;
    transition: background 0.3s var(--c-ease), transform 0.3s var(--c-ease),
        box-shadow 0.3s var(--c-ease), border-color 0.3s var(--c-ease);
}

.hh2-service-card:hover {
    border-color: rgba(9, 116, 127, 0.35);
    /* transform: translateY(-6px); */
    box-shadow: 0 20px 44px rgba(9, 116, 127, 0.14);
}

.hh2-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--c-accent-soft);
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s var(--c-ease), color 0.3s var(--c-ease);
}

.hh2-service-card:hover .hh2-service-icon {
    background: var(--c-accent);
    color: #fff;
}

.hh2-service-icon svg {
    width: 26px;
    height: 26px;
}

.hh2-service-card h3 {
    color: var(--c-ink);
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 14px;
    transition: color 0.3s var(--c-ease);
}

.hh2-service-card ul {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.hh2-service-card ul li {
    position: relative;
    padding-inline-start: 26px;
    color: var(--c-body);
    font-size: 14.5px;
    line-height: 1.5;
    margin-bottom: 10px;
    transition: color 0.3s var(--c-ease);
}

.hh2-service-card ul li::before {
    content: "\2713"; /* plain checkmark — no icon-font dependency */
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    color: var(--c-accent);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s var(--c-ease);
}

.hh2-service-arrow {
    margin-top: auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--c-border);
    color: var(--c-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s var(--c-ease);
}

.hh2-services-swiper .hh2-service-card:hover h3 {
    color: var(--c-accent) !important;
    -webkit-text-fill-color: var(--c-accent) !important;
}

.hh2-service-card:hover .hh2-service-arrow {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
    transform: translateX(4px);
}

.hh2-services-swiper {
    overflow: hidden;
}

.hh2-services-swiper .swiper-slide {
    height: auto;
}

/* ----------------------------------------------------------------------------
   5. OPPORTUNITIES — image + numbered accordion
   ---------------------------------------------------------------------------- */
.hh2-oppo {
    background: var(--c-surface-2);
}

.hh2-oppo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: stretch;
}

.hh2-oppo-media {
    border-radius: var(--c-radius);
    overflow: hidden;
    box-shadow: var(--c-shadow-sm);
    min-height: 380px;
}

.hh2-oppo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hh2-oppo-content .hh2-head {
    margin-bottom: 26px;
}

.hh2-acc .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--c-border);
    border-radius: 0;
}

.hh2-acc .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 20px 4px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--c-ink);
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 700;
}

.hh2-acc .accordion-item .accordion-button:not(.collapsed),
.hh2-acc .accordion-item .accordion-button:not(.collapsed) .hh2-acc-num {
    color: var(--c-accent) !important;
    -webkit-text-fill-color: var(--c-accent) !important;
}

.hh2-acc .accordion-button::after {
    /* CSS-drawn chevron — no icon-font dependency */
    background-image: none;
    content: "";
    width: 10px;
    height: 10px;
    border-inline-end: 2px solid var(--c-muted);
    border-bottom: 2px solid var(--c-muted);
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.25s var(--c-ease), border-color 0.25s var(--c-ease);
}

.hh2-acc .accordion-button:not(.collapsed)::after {
    transform: rotate(225deg);
    margin-top: 4px;
    border-color: var(--c-accent);
}

.hh2-acc-num {
    color: var(--c-muted);
    font-weight: 600;
    font-size: 15px;
    flex: 0 0 auto;
}

.hh2-acc .accordion-button:not(.collapsed) .hh2-acc-num {
    color: var(--c-accent);
}

.hh2-acc .accordion-body {
    padding: 0 4px 24px 40px;
    color: var(--c-body);
    font-size: 15px;
    line-height: 1.7;
}

.hh2-acc .accordion-body .hh2-btn {
    margin-top: 16px;
    padding: 11px 22px;
    font-size: 14px;
}

/* ----------------------------------------------------------------------------
   6. STATS
   ---------------------------------------------------------------------------- */
.hh2-stats {
    padding: clamp(48px, 6vw, 84px) 0;
}

.hh2-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px);
}

.hh2-stat {
    border-inline-start: 2px solid var(--c-accent);
    padding-inline-start: clamp(18px, 2vw, 28px);
}

.hh2-stat-value {
    color: var(--c-ink);
    font-size: clamp(40px, 4.4vw, 58px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
}

.hh2-stat-label {
    display: block;
    color: var(--c-accent);
    font-weight: 700;
    font-size: 15px;
    margin: 12px 0 8px;
}

.hh2-stat p {
    color: var(--c-body);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
    max-width: 300px;
}

/* ----------------------------------------------------------------------------
   7. DUO CTA CARDS — reports (dark) + careers (light)
   ---------------------------------------------------------------------------- */
.hh2-duo {
    padding-bottom: var(--c-section-y);
}

.hh2-duo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(18px, 2vw, 28px);
}

.hh2-duo-card {
    position: relative;
    border-radius: var(--c-radius);
    overflow: hidden;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(26px, 3vw, 44px);
}

.hh2-duo-card--dark {
    background: var(--c-accent);
}

.hh2-duo-card--light {
    background: #f3ede1;
}

.hh2-duo-media {
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-end: 0;
    width: 46%;
}

.hh2-duo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hh2-duo-card--dark .hh2-duo-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #10242a 0%, rgba(16, 36, 42, 0) 60%);
}

.hh2-duo-card--light .hh2-duo-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #f3ede1 0%, rgba(243, 237, 225, 0) 60%);
}

.hh2-duo-body {
    position: relative;
    z-index: 2;
    max-width: 62%;
}

.hh2-duo-eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hh2-duo-card--dark .hh2-duo-eyebrow {
    color: var(--c-gold);
}

.hh2-duo-card--light .hh2-duo-eyebrow {
    color: var(--c-accent);
}

.hh2-duo-card h3 {
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 14px;
}

.hh2-duo-grid .hh2-duo-card--dark h3 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.hh2-duo-card--light h3 {
    color: var(--c-ink);
}

.hh2-duo-card p {
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0 0 24px;
}

.hh2-duo-card--dark p {
    color: rgba(255, 255, 255, 0.72);
}

.hh2-duo-card--light p {
    color: var(--c-body);
}

/* ----------------------------------------------------------------------------
   8. SHOWCASE — featured project on dark band
   ---------------------------------------------------------------------------- */
.hh2-showcase {
    background: var(--c-accent);
    padding: var(--c-section-y) 0;
}

.hh2-showcase .cx-eyebrow {
    color: var(--c-gold);
}

.hh2-showcase .cx-eyebrow::before {
    background: var(--c-gold);
}

.hh2-showcase-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(30px, 4vw, 52px);
}

.hh2-showcase .hh2-showcase-head .hh2-title {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.hh2-showcase-head .hh2-sub {
    color: rgba(255, 255, 255, 0.7);
}

.hh2-showcase-media {
    position: relative;
    border-radius: clamp(16px, 2vw, 28px);
    overflow: hidden;
    height: clamp(320px, 42vw, 560px);
}

.hh2-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hh2-showcase-card {
    position: absolute;
    inset-inline-end: clamp(14px, 3vw, 36px);
    bottom: clamp(14px, 3vw, 32px);
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    padding: 20px 24px;
    max-width: min(360px, calc(100% - 28px));
    box-shadow: var(--c-shadow);
}

.hh2-showcase-card strong {
    display: block;
    color: var(--c-ink);
    font-size: 17px;
    margin-bottom: 4px;
}

.hh2-showcase-card span {
    display: block;
    color: var(--c-body);
    font-size: 13.5px;
    margin-bottom: 14px;
}

.hh2-showcase-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--c-accent);
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
}

.hh2-showcase-card a:hover {
    color: var(--c-accent-700);
}

.hh2-showcase-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: clamp(22px, 3vw, 34px);
}

.hh2-showcase-foot p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
}

.hh2-showcase-foot a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--c-gold);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
}

.hh2-showcase-foot a:hover {
    color: #e6ad4f;
}

/* ----------------------------------------------------------------------------
   9. LEADERSHIP CARDS (testimonial-style)
   ---------------------------------------------------------------------------- */
.hh2-people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2vw, 28px);
}

.hh2-person-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: clamp(24px, 2.4vw, 34px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--c-ease), box-shadow 0.3s var(--c-ease);
}

.hh2-person-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--c-shadow);
}

.hh2-person-quote {
    color: var(--c-accent);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 16px;
}

.hh2-person-card>p {
    color: var(--c-body);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 24px;
}

.hh2-person-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--c-border);
}

.hh2-person-meta img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.hh2-person-meta strong {
    display: block;
    color: var(--c-ink);
    font-size: 15.5px;
}

.hh2-person-meta span {
    display: block;
    color: var(--c-muted);
    font-size: 13px;
    margin-top: 2px;
}

/* ----------------------------------------------------------------------------
   10. TALK — contact split (content left / form card right)
   ---------------------------------------------------------------------------- */
.hh2-talk {
    background: var(--c-surface-2);
}

.hh2-talk-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
}

.hh2-talk-left .hh2-head {
    margin-bottom: 26px;
}

.hh2-talk-chips {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.hh2-talk-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 14px 18px;
    text-decoration: none;
    transition: border-color 0.25s var(--c-ease), transform 0.25s var(--c-ease);
    max-width: 420px;
}

.hh2-talk-chip:hover {
    border-color: var(--c-accent);
    transform: translateY(-2px);
}

.hh2-talk-chip i {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--c-accent-soft);
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.hh2-talk-chip small {
    display: block;
    color: var(--c-muted);
    font-size: 12.5px;
}

.hh2-talk-chip strong {
    display: block;
    color: var(--c-ink);
    font-size: 15.5px;
    font-weight: 600;
}

.hh2-talk-person {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 420px;
    background: var(--c-accent);
    border-radius: 14px;
    padding: 16px 20px;
}

.hh2-talk-person img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.hh2-talk-person small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12.5px;
}

.hh2-talk-person strong {
    display: block;
    color: #fff;
    font-size: 16px;
}

.hh2-talk-person a {
    margin-inline-start: auto;
    flex: 0 0 auto;
    background: var(--c-gold);
    color: #0b3b40;
    font-weight: 700;
    font-size: 13.5px;
    border-radius: 8px;
    padding: 10px 16px;
    text-decoration: none;
    transition: background 0.25s var(--c-ease);
}

.hh2-talk-person a:hover {
    background: #e6ad4f;
    color: #0b3b40;
}

/* form card */
.hh2-form-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    padding: clamp(24px, 3vw, 40px);
    box-shadow: var(--c-shadow-sm);
}

.hh2-form-card h3 {
    color: var(--c-ink);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
}

.hh2-form-card>p {
    color: var(--c-body);
    font-size: 14.5px;
    margin: 0 0 24px;
}

.hh2-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
    margin-bottom: 18px;
}

.hh2-field label {
    display: block;
    color: var(--c-ink);
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 7px;
}

.hh2-field label span {
    color: #d05353;
}

.hh2-field input {
    width: 100%;
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius-sm);
    background: var(--c-surface-2);
    padding: 12px 14px;
    font-size: 14.5px;
    color: var(--c-ink);
    transition: border-color 0.2s var(--c-ease), box-shadow 0.2s var(--c-ease);
}

.hh2-field input:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px var(--c-accent-soft);
    background: #fff;
}

.hh2-form-card .hh2-btn {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
}

.hh2-form-terms {
    text-align: center;
    color: var(--c-muted);
    font-size: 12.5px;
    margin: 14px 0 0;
}

.hh2-form-terms a {
    color: var(--c-accent);
    text-decoration: underline;
}

/* ----------------------------------------------------------------------------
   11. BLOG
   ---------------------------------------------------------------------------- */
.hh2-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2vw, 28px);
}

.hh2-blog-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--c-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--c-ease), box-shadow 0.3s var(--c-ease);
}

.hh2-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--c-shadow);
}

.hh2-blog-media {
    position: relative;
    height: 230px;
    display: block;
    overflow: hidden;
}

.hh2-blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--c-ease);
}

.hh2-blog-card:hover .hh2-blog-media img {
    transform: scale(1.05);
}

.hh2-blog-date {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    background: var(--c-accent);
    color: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 8px 12px;
    line-height: 1.1;
}

.hh2-blog-date strong {
    display: block;
    font-size: 19px;
    font-weight: 700;
}

.hh2-blog-date span {
    display: block;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-gold);
    margin-top: 2px;
}

.hh2-blog-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hh2-blog-tag {
    color: var(--c-accent);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hh2-blog-body h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
}

.hh2-blog-body h3 a {
    color: var(--c-ink);
    text-decoration: none;
}

.hh2-blog-card .hh2-blog-body h3 a:hover {
    color: var(--c-accent) !important;
    -webkit-text-fill-color: var(--c-accent) !important;
}

.hh2-blog-body p {
    color: var(--c-body);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 18px;
}

.hh2-blog-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-accent);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.hh2-blog-more:hover {
    color: var(--c-accent-700);
}

.hh2-blog-headrow {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(30px, 4vw, 48px);
}

.hh2-blog-headrow .hh2-head {
    margin-bottom: 0;
}

/* ----------------------------------------------------------------------------
   12. RESPONSIVE
   ---------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
    .hh2-duo-body {
        max-width: 70%;
    }
}

/* the fixed .mobile-nav bar (≈66px) overlays the page top below 1025px */
@media (max-width: 1024.98px) {
    .hh2-hero {
        padding-top: 96px;
    }
}

@media (max-width: 991.98px) {

    .hh2-hero-grid,
    .hh2-about-grid,
    .hh2-oppo-grid,
    .hh2-talk-grid {
        grid-template-columns: 1fr;
    }

    /* stacked hero: swap the vertical checklist divider for a horizontal one */
    .hh2-hero-panel {
        padding-inline-start: 0;
        border-inline-start: none;
        padding-top: 26px;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
    }

    .hh2-trio-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-inline: auto;
        margin-top: -70px;
    }

    .hh2-stats-grid,
    .hh2-people-grid,
    .hh2-blog-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-inline: auto;
    }

    .hh2-duo-grid {
        grid-template-columns: 1fr;
    }

    .hh2-oppo-media {
        min-height: 300px;
        max-height: 380px;
    }

    .hh2-showcase-foot {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .hh2-hero-actions .hh2-btn {
        width: 100%;
        justify-content: center;
    }

    .hh2-form-fields {
        grid-template-columns: 1fr;
    }

    .hh2-services-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .hh2-blog-headrow {
        flex-direction: column;
        align-items: flex-start;
    }

    .hh2-duo-media {
        display: none;
    }

    .hh2-duo-body {
        max-width: 100%;
    }

    .hh2-duo-card {
        min-height: 0;
    }
}
