/* Climate Works — Modern Homepage */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Questrial&display=swap');

:root {
    --cw-navy: #0f3952;
    --cw-navy-dark: #0a1f2c;
    --cw-yellow: #e69140;
    --cw-blue: #3b77ac;
    --cw-teal: #1a5f7a;
    --cw-sky: #4a8fb8;
    --cw-text: #1a1a1a;
    --cw-charcoal: #3d4449;
    --cw-muted: #5f6b76;
    --cw-light: #f7f9fb;
    --cw-white: #ffffff;
    --cw-border: #e8edf2;
    --cw-max: 1280px;
    --section-pad: clamp(80px, 10vw, 140px);
    --font-heading: 'Questrial', sans-serif;
    --font-subheading: 'Questrial', sans-serif;
    --font-form-label: 'Lato', sans-serif;
    --font-form-input: 'Lato', sans-serif;
    --form-label-color: var(--cw-charcoal);
    --form-input-color: #3d4449;
    --form-input-size: calc(1rem + 2px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-subheading);
    color: var(--cw-text);
    line-height: 1.6;
    background: var(--cw-white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(100% - 48px, var(--cw-max));
    margin-inline: auto;
}

.display-heading {
    font-family: var(--font-heading);
    font-size: calc(2.5rem + 10px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cw-navy);
    letter-spacing: -0.02em;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-header--left {
    text-align: left;
    max-width: none;
    margin: 0 0 32px;
}

.section-subtitle {
    margin-top: 16px;
    font-size: 1.125rem;
    color: var(--cw-muted);
    line-height: 1.55;
}

.lead-text {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    line-height: 1.55;
    color: var(--cw-muted);
    max-width: 42rem;
}

/* Buttons — unified pill style */
.btn,
button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    font-family: var(--font-subheading);
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
    color: var(--cw-white);
    background-color: var(--cw-yellow);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 145, 64, 0.35);
    color: var(--cw-white);
}

.btn .btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--cw-white);
    box-shadow: none;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    box-shadow: none;
}

/* Top bar */
.top-bar {
    background: var(--cw-navy-dark);
    color: var(--cw-white);
    font-size: 0.8125rem;
}

.top-bar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 5px 0;
}

.top-contacts {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-self: start;
}

.top-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cw-white);
}

.top-contacts .contact-icon {
    width: 14px;
    height: 14px;
    fill: var(--cw-yellow);
}

.top-bar-end {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    flex-wrap: wrap;
}

.top-bar-social {
    justify-self: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-self: end;
}

.top-nav { display: flex; gap: 22px; align-items: center; }
.top-nav a { color: var(--cw-white); font-weight: 500; display: inline-flex; align-items: center; gap: 4px; }
.top-nav .nav-caret { font-size: 0.6rem; opacity: 0.8; }

.lang-toggle {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.lang-toggle__btn {
    border: none;
    background: transparent;
    color: var(--cw-white);
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 7px 12px;
    cursor: pointer;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    transition: background 0.15s ease, color 0.15s ease;
}

.lang-toggle__btn + .lang-toggle__btn {
    border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.lang-toggle__btn.is-active {
    background: var(--cw-yellow);
    color: var(--cw-navy-dark);
}

.lang-toggle__btn:not(.is-active):hover {
    background: rgba(255, 255, 255, 0.08);
}

.social-links { display: flex; gap: 10px; }

.social-links a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cw-yellow);
    color: var(--cw-white);
    display: grid;
    place-items: center;
}

.social-links a svg {
    width: 14px;
    height: 14px;
}

/* Sticky header stack */
.site-header-sticky {
    position: sticky;
    top: 0;
    z-index: 50;
}

/* Header */
.site-header {
    background: var(--cw-white);
    border-bottom: 1px solid var(--cw-border);
}

.header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1em;
    padding: 10px 0;
}

.logo {
    flex-shrink: 0;
}

.logo img { height: 54px; width: auto; }

.service-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 1.5vw, 24px);
    min-width: 0;
}

.service-nav a {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: calc(0.9375rem + 1px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--cw-charcoal);
}

.service-nav a.nav-emergency {
    color: var(--cw-yellow);
    font-weight: 600;
}

.service-nav a:hover { color: var(--cw-yellow); }

.header-search-wrap {
    position: relative;
    flex-shrink: 0;
    width: min(200px, 100%);
    justify-self: end;
}

.header-search {
    display: flex;
    align-items: center;
    width: 100%;
    background: #eeeeee;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 4px 4px 4px 16px;
    transition: border-color 0.15s ease;
}

.header-search-wrap.is-active .header-search {
    border-color: var(--cw-navy);
}

.header-search input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    outline: none;
}

.header-search input::-webkit-search-cancel-button,
.header-search input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

.header-search input::placeholder {
    color: #7a8694;
}

.header-search-clear[hidden] {
    display: none !important;
}

.header-search-clear,
.header-search-submit {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.header-search-clear {
    color: var(--cw-charcoal);
}

.header-search-clear svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.header-search-clear:hover {
    background: rgba(61, 68, 73, 0.1);
}

.header-search-submit {
    color: var(--cw-yellow);
}

.header-search-wrap.has-value .header-search-submit {
    display: none;
}

.header-search-submit svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.header-search-submit:hover {
    background: rgba(230, 145, 64, 0.12);
}

.header-search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    min-width: 280px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--cw-white);
    border: 1px solid var(--cw-border);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(15, 57, 82, 0.12);
    z-index: 60;
    max-height: 320px;
    overflow-y: auto;
}

.header-search-results li {
    border-bottom: 1px solid var(--cw-border);
}

.header-search-results li:last-child {
    border-bottom: none;
}

.header-search-results button {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: transparent;
    text-align: left;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--cw-text);
    cursor: pointer;
}

.header-search-results button:hover,
.header-search-results button.is-highlighted {
    background: var(--cw-light);
}

.header-search-results li[aria-selected="true"] button {
    background: var(--cw-light);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--cw-navy);
    cursor: pointer;
    margin-left: auto;
}

/* Hero — full-width photo + navy card */
.hero--featured {
    display: block;
    min-height: clamp(520px, 72vh, 760px);
    background-size: cover;
    background-position: 62% center;
    background-repeat: no-repeat;
    position: relative;
}

.hero--featured .hero-inner {
    display: flex;
    align-items: center;
    min-height: clamp(520px, 72vh, 760px);
    padding: 48px 0;
}

.hero-card {
    max-width: 560px;
    background: rgba(10, 31, 44, 0.9);
    border-radius: 16px;
    padding: clamp(32px, 5vw, 48px);
    color: var(--cw-white);
}

.hero-card h1 {
    font-family: var(--font-heading);
    font-size: clamp(calc(2rem + 5px), calc(4vw + 5px), calc(3.5rem + 5px));
    font-weight: 700;
    line-height: 1.1;
    color: var(--cw-white);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-card p {
    font-family: var(--font-subheading);
    font-size: 21px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.hero-card .hero-reviews span,
.hero-card .hero-reviews span a {
    color: rgba(255, 255, 255, 0.9);
}

.hero-card .hero-reviews span a:hover {
    color: var(--cw-white);
}

.hero-reviews {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-reviews span { font-size: 0.95rem; }
.hero-reviews img.stars { height: 20px; }
.hero-reviews img.google { height: 26px; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Help hub — bento service grid */
.help-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(165deg, #f0f5f9 0%, var(--cw-white) 42%, #faf8f5 100%);
    position: relative;
    overflow: hidden;
}

.help-section::before,
.help-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.help-section::before {
    width: 520px;
    height: 520px;
    top: -180px;
    right: -120px;
    background: radial-gradient(circle, rgba(230, 145, 64, 0.1) 0%, transparent 68%);
}

.help-section::after {
    width: 420px;
    height: 420px;
    bottom: -140px;
    left: -100px;
    background: radial-gradient(circle, rgba(15, 57, 82, 0.07) 0%, transparent 70%);
}

.help-section .section-header {
    position: relative;
    z-index: 1;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(148px, auto));
    gap: 18px;
    max-width: 1080px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.help-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 6px;
    padding: 24px 26px;
    border-radius: 22px;
    color: var(--cw-white);
    text-align: left;
    overflow: hidden;
    min-height: 148px;
    box-shadow: 0 10px 28px rgba(15, 57, 82, 0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.help-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.22) 0%, transparent 42%);
    pointer-events: none;
}

.help-card::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    bottom: -40px;
    right: -30px;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(15, 57, 82, 0.18);
    color: var(--cw-white);
}

.help-card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.help-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 700;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.help-card-link {
    margin-top: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    position: relative;
    z-index: 1;
}

.help-card:hover .help-card-link {
    opacity: 1;
    transform: translateY(0);
}

.help-card--heat {
    background: linear-gradient(145deg, #0f3952 0%, #1a5f7a 100%);
}

.help-card--cool {
    background: linear-gradient(145deg, #3b77ac 0%, #4a8fb8 100%);
}

.help-card--water {
    background: linear-gradient(145deg, #1a5f7a 0%, #2d8a9e 100%);
}

.help-card--pumps {
    background: linear-gradient(145deg, #2d6a8f 0%, #3b77ac 100%);
}

.help-card--plumbing {
    background: linear-gradient(145deg, #0a1f2c 0%, #0f3952 100%);
}

.help-card--duct {
    background: linear-gradient(145deg, #245a75 0%, #1a5f7a 100%);
}

.help-card--water-heaters {
    background: linear-gradient(145deg, #356987 0%, #4a8fb8 100%);
}

.help-card--emergency {
    background: linear-gradient(145deg, #d97a2e 0%, #e69140 55%, #f0a85c 100%);
    box-shadow: 0 10px 28px rgba(230, 145, 64, 0.28);
}

.help-card--emergency:hover {
    box-shadow: 0 18px 40px rgba(230, 145, 64, 0.35);
}

.help-card-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Service feature — dark spotlight blocks */
.service-feature {
    padding: var(--section-pad) 0;
    background: linear-gradient(135deg, var(--cw-navy-dark) 0%, #0f3952 55%, #1a5f7a 100%);
    position: relative;
    overflow: hidden;
}

.service-feature::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle, rgba(230, 145, 64, 0.15) 0%, transparent 68%);
    pointer-events: none;
}

.service-feature-inner {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-feature-media {
    position: relative;
}

.service-feature-image {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 560px;
    border-radius: 24px 80px 24px 24px;
    background: center/cover no-repeat;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.service-feature-image::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 2px solid rgba(230, 145, 64, 0.45);
    border-radius: 18px 72px 18px 18px;
    pointer-events: none;
    z-index: 1;
}

.service-feature-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    padding: 12px 20px;
    background: var(--cw-yellow);
    color: var(--cw-white);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.service-feature-content .display-heading {
    color: var(--cw-white);
    text-align: left;
    margin-bottom: 20px;
}

.service-feature-lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 36px;
    max-width: 540px;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.service-feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    color: var(--cw-white);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.3;
    backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.service-feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(230, 145, 64, 0.4);
    transform: translateY(-2px);
}

.service-feature-card img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}

.reviews-subtitle {
    margin: 0;
    text-align: left;
    font-size: 0.9rem;
    color: var(--cw-muted);
}

.faq-intro {
    display: flex;
    flex-direction: column;
}

.faq-intro .lead-text {
    margin-bottom: 28px;
}

.faq-intro .faq-image {
    margin-top: 40px;
}

/* Reviews */
.reviews-section {
    padding: var(--section-pad) 0;
    background: var(--cw-light);
    text-align: center;
}

.reviews-section .section-header {
    margin-bottom: 12px;
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 28px;
    margin: 32px 0 48px;
}

.reviews-summary-meta {
    text-align: left;
}

.reviews-stars {
    display: block;
    color: #ea4335;
    font-size: 1.2rem;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 6px;
}

.reviews-read-all {
    display: inline-block;
    margin-top: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a73e8;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.reviews-read-all:hover {
    text-decoration: underline;
    color: #1558b0;
}

.reviews-summary .score {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cw-navy);
}

.reviews-summary .divider {
    width: 1px;
    height: 48px;
    background: var(--cw-border);
}

.reviews-placeholder {
    background: var(--cw-white);
    border: 1px dashed var(--cw-border);
    border-radius: 20px;
    padding: 64px 32px;
    color: var(--cw-muted);
    max-width: 900px;
    margin: 0 auto;
}

.wpgr-button-wrap {
    display: none !important;
}

.reviews-section .wpgr-stars {
    color: #ea4335 !important;
}

/* Offers */
.offers-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, #f4f7fa 0%, var(--cw-white) 100%);
}

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

/* Bilingual toggle — show/hide EN vs FR copy */
html[lang="fr"] .i18n-en { display: none !important; }
html:not([lang="fr"]) .i18n-fr { display: none !important; }

.promo-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(230, 145, 64, 0.45);
    background: linear-gradient(145deg, #1a2f42 0%, #0f2233 55%, #0a1824 100%);
    box-shadow: 0 18px 40px rgba(15, 57, 82, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(15, 57, 82, 0.28);
    border-color: rgba(230, 145, 64, 0.85);
}

.promo-card__shine {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(230, 145, 64, 0.18), transparent 55%);
    pointer-events: none;
}

.promo-card__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr minmax(120px, 34%);
    gap: 20px;
    padding: 28px 28px 24px;
    min-height: 320px;
    align-items: stretch;
}

.promo-card__copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1;
}

.promo-card__tag {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-form-label);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cw-yellow);
    background: rgba(230, 145, 64, 0.12);
    border: 1px solid rgba(230, 145, 64, 0.35);
    border-radius: 999px;
    padding: 5px 12px;
}

.promo-card__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
}

.promo-card__title em {
    font-style: normal;
    color: var(--cw-yellow);
    font-weight: 700;
}

.promo-card__deal {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(230, 145, 64, 0.5);
    background: rgba(0, 0, 0, 0.22);
    max-width: 260px;
}

.promo-card__deal-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(230, 145, 64, 0.2);
    color: var(--cw-yellow);
    flex-shrink: 0;
}

.promo-card__deal-icon svg {
    width: 22px;
    height: 22px;
}

.promo-card__amount {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.promo-card__amount-label {
    display: block;
    margin-top: 2px;
    font-size: 0.85rem;
    color: var(--cw-yellow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.promo-card__desc {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    max-width: 42ch;
}

.promo-card__perks {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.promo-card__perks li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.promo-card__perk-icon {
    font-size: 0.95rem;
    line-height: 1;
}

.promo-card__cta {
    margin-top: auto;
    padding-top: 10px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cw-yellow);
}

.promo-card__art {
    position: relative;
    display: grid;
    place-items: center;
    align-self: center;
    min-height: 180px;
}

/* Gift illustration (referral) */
.promo-gift {
    position: relative;
    width: 110px;
    height: 100px;
}

.promo-gift__box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 62px;
    border-radius: 10px;
    background: linear-gradient(160deg, #2a4a66 0%, #1a3348 100%);
    border: 2px solid rgba(230, 145, 64, 0.5);
    box-shadow: inset 0 -8px 16px rgba(0, 0, 0, 0.25);
}

.promo-gift__lid {
    position: absolute;
    bottom: 54px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 18px;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #3d6280 0%, #2a4a66 100%);
    border: 2px solid rgba(230, 145, 64, 0.45);
}

.promo-gift__bow {
    position: absolute;
    bottom: 58px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 40%, #f0a85c, var(--cw-yellow) 45%, #c97830 100%);
    box-shadow: 0 4px 12px rgba(230, 145, 64, 0.45);
}

.promo-gift__bow::before,
.promo-gift__bow::after {
    content: '';
    position: absolute;
    top: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: inherit;
}

.promo-gift__bow::before { left: -14px; }
.promo-gift__bow::after { right: -14px; }

.promo-spark {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cw-yellow);
    opacity: 0.85;
    animation: promo-sparkle 2.4s ease-in-out infinite;
}

.promo-spark--1 { top: 18%; right: 18%; }
.promo-spark--2 { top: 42%; right: 8%; animation-delay: 0.6s; }
.promo-spark--3 { bottom: 22%; right: 24%; animation-delay: 1.1s; width: 6px; height: 6px; }

@keyframes promo-sparkle {
    0%, 100% { opacity: 0.35; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* Heat pump illustration */
.promo-pump {
    position: relative;
    width: 130px;
    height: 130px;
}

.promo-pump__ring {
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(230, 145, 64, 0.35);
    border-radius: 50%;
}

.promo-pump__unit {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 68px;
    border-radius: 12px;
    background: linear-gradient(180deg, #eef2f6 0%, #c8d2dc 100%);
    border: 2px solid #9aabb8;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.promo-pump__unit::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 12px;
    right: 12px;
    height: 28px;
    border-radius: 6px;
    background: repeating-linear-gradient(90deg, #b8c5d0 0 6px, #a3b2bf 6px 8px);
}

.promo-pump__fan {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #7a8f9e;
    background: radial-gradient(circle, #dfe6ec 30%, #b0bec8 100%);
    animation: promo-fan-spin 6s linear infinite;
}

.promo-pump__fan::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 25%, #8fa3b0 25% 50%, transparent 50% 75%, #8fa3b0 75% 100%);
}

@keyframes promo-fan-spin {
    to { transform: translateX(-50%) rotate(360deg); }
}

.promo-pump__leaf {
    position: absolute;
    width: 22px;
    height: 12px;
    border-radius: 0 80% 0 80%;
    background: #4caf6a;
    opacity: 0.9;
}

.promo-pump__leaf--1 { top: 28px; right: 18px; transform: rotate(-25deg); }
.promo-pump__leaf--2 { top: 44px; right: 8px; transform: rotate(15deg); background: #3d9d5c; }

.promo-card--rebate .promo-card__shine {
    background: radial-gradient(ellipse 70% 55% at 100% 20%, rgba(76, 175, 106, 0.15), transparent 60%);
}

@media (max-width: 900px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .promo-card__inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .promo-card__art {
        min-height: 140px;
        order: -1;
    }

    .promo-card__desc {
        max-width: none;
    }
}

@media (max-width: 520px) {
    .promo-card__inner {
        padding: 22px 20px 20px;
    }

    .promo-card__perks li {
        white-space: normal;
    }
}

/* Blog */
.blog-section {
    padding: var(--section-pad) 0;
    background: var(--cw-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--cw-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--cw-border);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.blog-card:hover {
    box-shadow: 0 12px 40px rgba(15, 57, 82, 0.08);
}

.blog-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-thumb img { transform: scale(1.03); }

.blog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--cw-navy);
    color: var(--cw-white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 8px 14px;
    border-radius: 999px;
    text-transform: uppercase;
}

.blog-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.blog-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    color: var(--cw-navy);
}

.blog-body p {
    color: var(--cw-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    font-weight: 700;
    color: var(--cw-yellow);
    font-size: 0.95rem;
}

/* Partners */
.partners-section {
    padding: var(--section-pad) 0;
    text-align: center;
    background: var(--cw-white);
    position: relative;
    overflow: hidden;
}

.partners-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.partners-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
}

.partners-orb--left {
    width: 320px;
    height: 320px;
    top: -80px;
    left: -100px;
    background: radial-gradient(circle, rgba(230, 145, 64, 0.22) 0%, transparent 70%);
}

.partners-orb--right {
    width: 400px;
    height: 400px;
    bottom: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(15, 57, 82, 0.12) 0%, transparent 70%);
}

.partners-inner {
    position: relative;
    z-index: 1;
}

.partners-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.partners-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(230, 145, 64, 0.14) 0%, rgba(230, 145, 64, 0.06) 100%);
    border: 1px solid rgba(230, 145, 64, 0.28);
    color: #9a5b13;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partners-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 8px auto 40px;
    max-width: 720px;
}

.partners-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--cw-white);
    border: 1px solid var(--cw-border);
    box-shadow: 0 8px 24px rgba(15, 57, 82, 0.06);
    color: var(--cw-navy);
    font-size: 0.875rem;
    font-weight: 700;
}

.partners-trust-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cw-yellow);
    flex-shrink: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 148px;
    padding: 28px 24px;
    background: var(--cw-white);
    border: 1px solid var(--cw-border);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(15, 57, 82, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--cw-yellow), rgba(230, 145, 64, 0.35));
    opacity: 0.85;
}

.partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 145, 64, 0.35);
    box-shadow: 0 20px 40px rgba(15, 57, 82, 0.1);
}

.partner-card img {
    width: 100%;
    max-width: 180px;
    height: auto;
    max-height: 110px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 420px;
    }

    .partner-card {
        min-height: 120px;
        padding: 20px 16px;
    }

    .partner-card img {
        max-width: 140px;
        max-height: 90px;
    }

    .partners-trust-row {
        margin-bottom: 28px;
    }
}

/* FAQ — Questions? style */
.faq-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(135deg, var(--cw-navy-dark) 0%, #0f3952 55%, #1a5f7a 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle, rgba(230, 145, 64, 0.15) 0%, transparent 68%);
    pointer-events: none;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.faq-section .display-heading {
    color: var(--cw-white);
}

.faq-section .section-subtitle {
    color: rgba(255, 255, 255, 0.78);
}

.faq-intro .section-header--left {
    margin-bottom: 32px;
}

.faq-list details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0;
}

.faq-list details:last-child { border-bottom: none; }

.faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cw-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
    content: '';
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    margin-top: -4px;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s;
}

.faq-list details[open] summary::after {
    margin-top: 4px;
    transform: rotate(-135deg);
    border-color: var(--cw-yellow);
}

.faq-list summary:hover::after {
    border-color: var(--cw-yellow);
}

.faq-list .faq-answer {
    padding: 0 28px 24px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.65;
}

.faq-image {
    width: min(100%, 400px);
    aspect-ratio: 4 / 5;
    border-radius: 24px 80px 24px 24px;
    background: center/cover no-repeat;
    margin: 0;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
}

.faq-image::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 2px solid rgba(230, 145, 64, 0.45);
    border-radius: 18px 72px 18px 18px;
    pointer-events: none;
    z-index: 1;
}

.faq-image-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    padding: 12px 20px;
    background: var(--cw-yellow);
    color: var(--cw-white);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.faq-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.faq-tags .btn {
    padding: 12px 24px;
    font-size: 16px;
}

/* Shared form typography */
.cw-form .field-label,
.header-search label {
    font-family: var(--font-form-label);
    font-size: 1rem;
    font-weight: 700;
    color: var(--form-label-color);
}

.cw-form input,
.cw-form select,
.cw-form textarea {
    font-family: var(--font-form-input);
    font-size: var(--form-input-size);
    font-weight: 400;
    color: var(--form-input-color);
}

.header-search input {
    font-family: var(--font-form-input);
    font-size: calc(0.875rem + 2px);
    font-weight: 400;
    color: var(--form-input-color);
}

.cw-form input::placeholder,
.cw-form textarea::placeholder,
.header-search input::placeholder {
    color: #7a8694;
    font-weight: 400;
}

/* Contact */
.contact-section {
    padding: var(--section-pad) 0;
    background: var(--cw-light);
}

.contact-layout {
    max-width: 760px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form label,
.cw-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form .field-label,
.cw-form .field-label {
    display: block;
    font-family: var(--font-form-label);
    font-size: 1rem;
    font-weight: 700;
    color: var(--form-label-color);
    line-height: 1.3;
}

.contact-form .required,
.cw-form .required {
    color: #d64545;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    font-family: var(--font-form-input);
    font-size: var(--form-input-size);
    font-weight: 400;
    color: var(--form-input-color);
    border: 1px solid var(--cw-border);
    border-radius: 10px;
    padding: 12px 14px;
    background: var(--cw-white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #7a8694;
    font-weight: 400;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--cw-navy);
    box-shadow: 0 0 0 3px rgba(15, 57, 82, 0.08);
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-submit {
    width: 100%;
    margin-top: 4px;
}

.contact-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

.contact-form-status {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.contact-form-status.is-success {
    background: #eaf5ee;
    color: #1f6b3f;
}

.contact-form-status.is-error {
    background: #fdecea;
    color: #b42318;
}

/* Footer */
.site-footer {
    background: var(--cw-navy-dark);
    color: rgba(255,255,255,0.85);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 56px;
}

.site-footer h4 {
    color: var(--cw-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo img {
    width: min(220px, 100%);
    height: auto;
}

.cw-brand-lockup {
    display: inline-flex;
    align-items: center;
}

.cw-brand-lockup__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
}

.cw-brand-lockup__name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.cw-brand-lockup__climate {
    color: var(--cw-yellow);
    font-weight: 700;
}

.cw-brand-lockup__works {
    color: #ffffff;
    font-weight: 400;
}

.cw-brand-lockup__tagline {
    margin-top: 3px;
    font-family: var(--font-form-label);
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.88);
}

.site-footer p,
.site-footer li { font-size: 0.95rem; line-height: 1.75; }

.site-footer a:hover { color: var(--cw-yellow); }

.site-footer ul li {
    padding-left: 0;
    margin-bottom: 10px;
}

.site-footer ul li::before { display: none; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
}

/* Responsive */
@media (max-width: 1280px) {
    .service-nav {
        gap: 10px;
    }

    .service-nav a {
        font-size: calc(0.8125rem + 1px);
    }
}

@media (max-width: 1200px) {
    .service-nav {
        gap: 12px;
    }

    .service-nav a {
        font-size: calc(0.875rem + 1px);
    }

    .header-search-wrap {
        width: 180px;
    }
}

@media (max-width: 1100px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        max-width: 640px;
    }

    .help-card--heat,
    .help-card--cool,
    .help-card--water,
    .help-card--pumps,
    .help-card--plumbing,
    .help-card--duct,
    .help-card--water-heaters,
    .help-card--emergency {
        min-height: 148px;
    }

    .help-card-link {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .hero--featured {
        background-position: 65% center;
    }

    .service-feature-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-feature-image {
        max-height: 420px;
        aspect-ratio: 16 / 10;
        border-radius: 20px 60px 20px 20px;
    }

    .service-feature-badge {
        left: 20px;
        bottom: 20px;
    }

    .faq-layout { grid-template-columns: 1fr; gap: 48px; }

    .faq-image {
        max-width: 100%;
        aspect-ratio: 16 / 10;
        border-radius: 20px 60px 20px 20px;
    }

    .faq-image::after {
        border-radius: 14px 52px 14px 14px;
    }

    .faq-image-badge {
        left: 20px;
        bottom: 20px;
    }

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

    .blog-card:nth-child(3) {
        display: none;
    }
    .offers-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-nav { display: none; }
    .top-bar-inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .top-bar-social {
        justify-self: center;
    }
    .top-bar-right {
        justify-self: end;
        width: 100%;
    }
    .service-nav { display: none; }
    .header-search-wrap {
        display: none;
    }
    .menu-toggle { display: block; }

    .service-nav.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cw-white);
        padding: 12px 24px 16px;
        border-top: 1px solid var(--cw-border);
        gap: 0;
        z-index: 10;
    }

    .service-nav.open a {
        padding: 12px 0;
        border-bottom: 1px solid var(--cw-border);
    }

    .service-nav.open a:last-child {
        border-bottom: none;
    }

    .header-inner {
        display: flex;
        position: relative;
        gap: 16px;
        padding: 8px 0;
    }

    .menu-toggle {
        margin-left: auto;
    }

    .display-heading {
        font-size: calc(2rem + 10px);
    }

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

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card:nth-child(3) {
        display: flex;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid { grid-template-columns: 1fr; }
    .hero--featured .hero-inner { padding: 32px 0; }
    .hero-card { max-width: 100%; }
    .help-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .help-card--heat {
        grid-column: 1;
    }
}

/* Coming soon placeholder pages */
.coming-soon {
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    padding: clamp(64px, 10vw, 120px) 0;
    background: linear-gradient(180deg, var(--cw-light) 0%, var(--cw-white) 100%);
}

.coming-soon__inner {
    text-align: center;
    max-width: 640px;
}

.coming-soon__eyebrow {
    font-family: var(--font-form-label);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cw-yellow);
    margin-bottom: 12px;
}

.coming-soon h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    color: var(--cw-navy);
    margin-bottom: 16px;
    line-height: 1.15;
}

.coming-soon__lead {
    font-size: 1.125rem;
    color: var(--cw-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.coming-soon__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn-outline-navy {
    background: transparent;
    color: var(--cw-navy);
    border: 2px solid var(--cw-navy);
    box-shadow: none;
}

.btn-outline-navy:hover {
    background: var(--cw-navy);
    color: var(--cw-white);
    box-shadow: 0 8px 24px rgba(15, 57, 82, 0.25);
}
