/*
 * 1. Design tokens and global defaults
 * -------------------------------------------------------------------------- */
:root {
    --navy: #0b1f33;
    --navy2: #122f4b;
    --blue: #174c72;
    --orange: #ee6a24;
    --gold: #e7a83c;
    --cream: #f4f1ea;
    --soft: #edf2f5;
    --ink: #18232d;
    --muted: #5f6d78;
    --white: #fff;
    --cgw: #173f61;
    --cgw-accent: #e58a2d;
    --shadow: 0 24px 70px rgba(11, 31, 51, 0.15);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Manrope, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}
.skip-link {
    position: absolute;
    left: -9999px;
}
.skip-link:focus {
    left: 20px;
    top: 20px;
    z-index: 9999;
    background: #fff;
    padding: 10px;
}
/*
 * 2. Site header and navigation
 * -------------------------------------------------------------------------- */
.utility-bar {
    background: #071523;
    color: #d8e4ed;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.utility-inner {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.utility-inner a {
    font-weight: 800;
    color: #fff;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 0 rgba(11, 31, 51, 0.08);
    transition: 0.25s;
}
.site-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(11, 31, 51, 0.12);
}
.nav-row {
    height: 86px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}
.custom-logo {
    max-height: 64px;
    width: auto;
}
.brand-mark {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: Oswald;
    font-size: 28px;
}
.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-copy strong {
    font-family: Oswald;
    font-size: 22px;
    letter-spacing: 0.03em;
}
.brand-copy small {
    font-size: 9px;
    letter-spacing: 0.28em;
    margin-top: 6px;
}
.cgw-brand {
    display: grid;
    grid-template-columns: auto auto;
    align-items: end;
    line-height: 0.9;
}
.cgw-brand strong {
    font-family: Oswald;
    font-size: 21px;
    letter-spacing: 0.04em;
}
.cgw-brand b {
    font-family: Oswald;
    font-size: 21px;
    color: var(--cgw-accent);
    margin-left: 6px;
}
.cgw-brand small {
    grid-column: 1/3;
    font-size: 8px;
    letter-spacing: 0.2em;
    margin-top: 7px;
    color: #5a6b79;
}
.primary-nav .menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
}
.primary-nav a {
    font-size: 14px;
    font-weight: 700;
}
.primary-nav a:hover {
    color: var(--orange);
}
/*
 * 3. Buttons and shared controls
 * -------------------------------------------------------------------------- */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 4px;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    transition: 0.2s;
    border: 1px solid var(--orange);
}
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(238, 106, 36, 0.25);
}
.button-small {
    min-height: 44px;
    padding: 0 18px;
}
.button-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
}
.button-dark {
    background: var(--navy);
    border-color: var(--navy);
}
.button-light {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}
.button-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.menu-toggle {
    display: none;
}
/*
 * 4. Hero sections and typography
 * -------------------------------------------------------------------------- */
.hero,
.page-hero {
    position: relative;
    color: #fff;
    background: linear-gradient(125deg, #081826, #173f61);
    overflow: hidden;
}
.hero {
    min-height: 680px;
    display: flex;
    align-items: center;
}
.hero:before,
.page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 35%, rgba(238, 106, 36, 0.25), transparent 32%),
        linear-gradient(90deg, rgba(6, 20, 33, 0.95), rgba(6, 20, 33, 0.53) 58%, rgba(6, 20, 33, 0.78));
}
.hero--cgw:before,
.page-hero--cgw:before {
    background:
        radial-gradient(circle at 78% 35%, rgba(229, 138, 45, 0.28), transparent 31%),
        linear-gradient(90deg, rgba(9, 35, 55, 0.97), rgba(18, 61, 91, 0.57) 60%, rgba(9, 35, 55, 0.88));
}
.hero-content,
.page-hero .container {
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 760px;
    padding: 100px 0;
}
.hero h1,
.page-hero h1 {
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 14px 0 20px;
}
.hero h1 {
    font-size: clamp(52px, 7vw, 92px);
}
.page-hero {
    padding: 130px 0 105px;
}
.page-hero h1 {
    font-size: clamp(44px, 6vw, 76px);
    max-width: 900px;
}
.hero p,
.page-hero p {
    font-size: 18px;
    max-width: 700px;
    color: #dce7ef;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
    font-size: 12px;
    color: var(--orange);
}
.cgw-site .eyebrow {
    color: var(--cgw-accent);
}
.eyebrow:before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}
/*
 * 5. Shared content sections
 * -------------------------------------------------------------------------- */
.section {
    padding: 105px 0;
}
.section-soft {
    background: var(--soft);
}
.section-dark {
    background: var(--navy);
    color: #fff;
}
.section h2,
.division-strip h2,
.referral-banner h2 {
    font-family: Oswald;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.05;
    text-transform: uppercase;
    margin: 12px 0 22px;
}
.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 90px;
    align-items: center;
}
.split--reverse .stacked-images {
    order: 2;
}

/*
 * 6. Image stacks and feature lists
 * -------------------------------------------------------------------------- */
.stacked-images {
    min-height: 560px;
    position: relative;
}
.photo-placeholder {
    background: linear-gradient(145deg, #d9e1e5, #aebfc9);
    display: grid;
    place-items: center;
    color: #344f61;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.photo-placeholder:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.25));
}
.photo-placeholder span {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.82);
    padding: 8px 12px;
}
.stack-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 76%;
    height: 470px;
}
.stack-small {
    position: absolute;
    right: 0;
    width: 42%;
    height: 210px;
    border: 8px solid #fff;
}
.stack-small--top {
    top: 70px;
}
.stack-small--bottom {
    bottom: 0;
}
.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0 34px;
}
.check-grid span,
.feature-list li {
    position: relative;
    padding-left: 26px;
    font-weight: 700;
}
.check-grid span:before,
.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
}
/*
 * 7. Pridgen and Carolina Generator West division callout
 * -------------------------------------------------------------------------- */
.division-strip {
    padding: 86px 0;
    background: var(--cream);
}
.division-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}
.division-card {
    padding: 48px;
    background: var(--cgw);
    color: #fff;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: auto auto;
    align-items: end;
}
.division-card strong,
.division-card b {
    font-family: Oswald;
    font-size: 34px;
}
.division-card b {
    color: var(--cgw-accent);
    margin-left: 8px;
}
.division-card span {
    grid-column: 1/3;
    margin: 14px 0 28px;
    color: #dce7ef;
}
.division-card .button {
    grid-column: 1/3;
    background: var(--cgw-accent);
    border-color: var(--cgw-accent);
}
.text-link {
    font-weight: 800;
    color: var(--orange);
}
/*
 * 8. Referral callouts
 * -------------------------------------------------------------------------- */
.referral-banner {
    background: linear-gradient(110deg, #df5b18, #f08a31);
    color: #fff;
    padding: 70px 0;
}
.referral-banner--cgw {
    background: linear-gradient(110deg, #173f61, #275f88);
}
.referral-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.referral-inner p {
    max-width: 700px;
    margin: 0;
}
.referral-inner .eyebrow {
    color: #fff;
}
/*
 * 9. Service cards and content grids
 * -------------------------------------------------------------------------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 42px;
}
.service-card {
    padding: 38px;
    background: #122a40;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 310px;
    display: flex;
    flex-direction: column;
    transition: 0.25s;
    opacity: 0;
    transform: translateY(20px);
}
.service-card.is-visible {
    opacity: 1;
    transform: none;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card > span {
    font-family: Oswald;
    font-size: 15px;
    color: var(--orange);
}
.service-card h3 {
    font-family: Oswald;
    text-transform: uppercase;
    font-size: 27px;
    line-height: 1.1;
    margin: 28px 0 15px;
}
.service-card p {
    color: #c6d4df;
}
.service-card a {
    margin-top: auto;
    font-weight: 800;
    color: #fff;
}
.service-card--cgw {
    background: var(--cgw);
}
.service-card.light {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 10px 40px rgba(11, 31, 51, 0.08);
}
.service-card.light p {
    color: var(--muted);
}
.service-card.light a {
    color: var(--orange);
}
.section-heading {
    max-width: 760px;
}
/*
 * 10. Forms, contact panels, and page-specific components
 * -------------------------------------------------------------------------- */
.contact-panel,
.form-page,
.referral-page {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}
.form-placeholder {
    border: 1px dashed #aebac2;
    background: #f7f9fa;
    padding: 38px;
    min-height: 250px;
    color: var(--ink);
}
.section-dark .form-placeholder {
    background: #fff;
}
.image-band {
    padding: 90px 0;
    background: #0d2539;
    color: #fff;
}
.image-band-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.image-band .photo-placeholder {
    height: 520px;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.feature-list li {
    margin: 12px 0;
}
.cgw-locations {
    background: var(--cgw);
    color: #fff;
    padding: 18px 0;
}
.cgw-locations .container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}
.cgw-locations span {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #bed2df;
}
.stat-line {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid #dbe2e7;
    padding-top: 25px;
}
.stat-line strong {
    font-family: Oswald;
    font-size: 45px;
    color: var(--cgw-accent);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 45px;
}
.process-grid article {
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(11, 31, 51, 0.08);
    opacity: 0;
    transform: translateY(20px);
}
.process-grid article.is-visible {
    opacity: 1;
    transform: none;
}
.process-grid b {
    font-family: Oswald;
    color: var(--orange);
}
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 25px 0;
}
.location-grid span {
    padding: 14px;
    background: var(--soft);
    font-weight: 800;
}
.map-placeholder {
    height: 520px;
}
.steps {
    list-style: none;
    padding: 0;
}
.steps li {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #dce3e7;
}
.steps b {
    font-family: Oswald;
    color: var(--orange);
    font-size: 24px;
}
.cgw-contact-callout {
    margin-top: 30px;
    padding: 20px;
    background: var(--soft);
    display: flex;
    flex-direction: column;
}
.cgw-contact-callout a {
    font-weight: 800;
    color: var(--cgw);
}
.content-narrow {
    max-width: 850px;
}
/*
 * 11. Footer
 * -------------------------------------------------------------------------- */
.site-footer {
    background: #071523;
    color: #c4d0d8;
    padding: 70px 0 25px;
}
.site-footer--cgw {
    background: #0b2a40;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr;
    gap: 60px;
}
.footer-grid h3,
.footer-grid h4 {
    color: #fff;
    font-family: Oswald;
    text-transform: uppercase;
}
.footer-grid a {
    display: block;
    margin: 8px 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 50px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}
/*
 * 12. Motion and reveal states
 * -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.7s;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
/*
 * 13. Responsive layouts
 * -------------------------------------------------------------------------- */
@media (max-width: 980px) {
    .nav-cta {
        display: none;
    }
    .menu-toggle {
        display: flex;
        margin-left: auto;
        border: 0;
        background: none;
        flex-direction: column;
        gap: 4px;
    }
    .menu-toggle span {
        width: 26px;
        height: 2px;
        background: var(--navy);
    }
    .menu-toggle b {
        font-size: 9px;
    }
    .primary-nav {
        position: fixed;
        inset: 122px 0 auto 0;
        background: #fff;
        padding: 25px;
        display: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    .primary-nav.is-open {
        display: block;
    }
    .primary-nav .menu {
        flex-direction: column;
        align-items: flex-start;
    }
    .split,
    .division-grid,
    .contact-panel,
    .form-page,
    .referral-page,
    .image-band-grid {
        grid-template-columns: 1fr;
    }
    .split--reverse .stacked-images {
        order: 0;
    }
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero {
        min-height: 600px;
    }
    .stacked-images {
        min-height: 500px;
    }
}
@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }
    .utility-inner span {
        display: none;
    }
    .utility-inner {
        justify-content: center;
    }
    .nav-row {
        height: 76px;
    }
    .cgw-brand strong,
    .cgw-brand b {
        font-size: 17px;
    }
    .hero-content {
        padding: 72px 0;
    }
    .hero h1 {
        font-size: 49px;
    }
    .page-hero {
        padding: 85px 0 70px;
    }
    .section {
        padding: 72px 0;
    }
    .service-grid,
    .process-grid,
    .check-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    .referral-inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .stacked-images {
        min-height: 420px;
    }
    .stack-main {
        width: 88%;
        height: 360px;
    }
    .stack-small {
        width: 44%;
        height: 145px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    .cgw-locations .container {
        gap: 12px;
    }
    .button-row .button {
        width: 100%;
    }
}
.hero--industrial {
    background-image: url("../images/home-hero.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* Cleaner, more compact header logo */
.site-header .brand {
    flex: 0 0 auto;
    padding: 9px 0;
    line-height: 0;
}

.site-header .custom-logo {
    display: block;
    width: 190px;
    max-width: 190px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

/* Slightly smaller on narrower desktop and tablet screens */
@media (max-width: 1100px) {
    .site-header .custom-logo {
        width: 170px;
        max-width: 170px;
    }
}

/* Compact mobile logo */
@media (max-width: 640px) {
    .site-header .brand {
        padding: 6px 0;
    }

    .site-header .custom-logo {
        width: 155px;
        max-width: 155px;
        max-height: 44px;
    }
}
/* Actual photographs replacing theme placeholders */
.stack-photo {
    display: block;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow);
}
.section-photo {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow);
}

/*
 * 14. Photography, About page, and Willow mascot enhancements
 * -------------------------------------------------------------------------- */
.hero,
.page-hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero--cgw {
    background-image: url("../images/cgw-truck-2.webp");
    background-position: center 48%;
}

.page-hero--industrial {
    background-image: url("../images/inside-industrial.webp");
    background-position: center 42%;
}

.page-hero--about {
    background-image: url("../images/cgw-truck.jpg");
    background-position: center 48%;
}

.page-hero--about:before {
    background:
        radial-gradient(circle at 78% 42%, rgba(238, 106, 36, 0.2), transparent 30%),
        linear-gradient(90deg, rgba(6, 20, 33, 0.97), rgba(6, 20, 33, 0.72) 58%, rgba(6, 20, 33, 0.45));
}

.page-hero--installation {
    background-image: url("../images/home-generator-install.webp");
    background-position: center 52%;
}

.page-hero--maintenance {
    background-image: url("../images/maintenance.webp");
    background-position: center 48%;
}

.page-hero--repair {
    background-image: url("../images/working-2.jpg");
    background-position: center 45%;
}

.page-hero--service-areas {
    background-image: url("../images/cgw-truck-5.jpg");
    background-position: center 58%;
}

.page-hero--service-request {
    background-image: url("../images/cgw-working.jpeg");
    background-position: center 46%;
}

.page-hero--referral {
    background-image: url("../images/home-generator-install.webp");
    background-position: center 52%;
}

.page-hero--contact {
    background-image: url("../images/home-hero.webp");
    background-position: center 48%;
}

.stack-photo,
.section-photo {
    border-radius: 6px;
}

.stack-photo {
    width: 100%;
    height: 100%;
}

.section-heading.center {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading.center .eyebrow {
    justify-content: center;
}

.section-heading > p {
    color: var(--muted);
    font-size: 17px;
}

.card-grid {
    display: grid;
    gap: 22px;
    margin-top: 42px;
}

.card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    position: relative;
    padding: 34px;
    background: #fff;
    border-top: 4px solid var(--orange);
    box-shadow: 0 12px 38px rgba(11, 31, 51, 0.09);
}

.feature-card > span {
    color: var(--orange);
    font-family: Oswald, sans-serif;
    font-weight: 700;
}

.feature-card h3 {
    margin: 14px 0 10px;
    font-family: Oswald, sans-serif;
    font-size: 27px;
    line-height: 1.15;
    text-transform: uppercase;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.about-hero-copy {
    max-width: 790px;
}

.about-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.about-badge-row span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(7, 21, 35, 0.5);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.about-story-grid,
.about-local-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.about-founder-visual {
    position: relative;
    min-height: 590px;
}

.founder-photo-shell {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 560px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 35%, rgba(238, 106, 36, 0.95) 0 34%, transparent 34.5%),
        linear-gradient(145deg, #eef2f4, #dce5ea);
    box-shadow: var(--shadow);
}

.founder-photo-shell:before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(11, 31, 51, 0.12);
}

.founder-photo-shell img {
    position: relative;
    z-index: 1;
    width: auto;
    max-height: 535px;
    object-fit: contain;
    object-position: center bottom;
}

.veteran-owned-card {
    position: absolute;
    right: -28px;
    bottom: -24px;
    z-index: 2;
    width: min(330px, 85%);
    padding: 22px 24px;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 18px 45px rgba(7, 21, 35, 0.28);
}

.veteran-owned-card span {
    display: block;
    margin-bottom: 7px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.veteran-owned-card strong {
    display: block;
    line-height: 1.45;
}

.founder-quote {
    margin: 32px 0 0;
    padding: 26px 0 0 28px;
    border-top: 1px solid #d9e1e6;
    border-left: 4px solid var(--orange);
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
}

.founder-quote cite {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.stats {
    padding: 54px 0;
    background: var(--navy);
    color: #fff;
}

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

.stats-grid > div {
    padding: 8px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.stats-grid strong {
    display: block;
    color: var(--orange);
    font-family: Oswald, sans-serif;
    font-size: 48px;
    line-height: 1;
}

.stats-grid span {
    display: block;
    margin-top: 10px;
    color: #d5e1e9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-local-section {
    overflow: hidden;
}

.about-field-collage {
    position: relative;
    min-height: 540px;
}

.about-field-main {
    width: 82%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow);
}

.about-field-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 235px;
    object-fit: cover;
    object-position: center;
    border: 9px solid var(--navy);
    box-shadow: var(--shadow);
}

.about-local-section p {
    color: #cbd8e1;
}

.check-grid--light span {
    color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 45px;
}

.team-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 38px rgba(11, 31, 51, 0.1);
}

.team-photo {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 300px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, rgba(238, 106, 36, 0.18), transparent 40%),
        linear-gradient(145deg, #edf2f5, #d8e2e8);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.025);
}

.team-card-copy {
    padding: 20px 18px 22px;
    border-top: 4px solid var(--orange);
}

.team-card-copy h3 {
    margin: 0 0 4px;
    font-family: Oswald, sans-serif;
    font-size: 22px;
    line-height: 1.1;
    text-transform: uppercase;
}

.team-card-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.team-card--willow {
    background: var(--navy);
}

.team-card--willow .team-photo {
    background:
        radial-gradient(circle at 50% 45%, rgba(238, 106, 36, 0.38), transparent 42%),
        linear-gradient(145deg, #173f61, #071523);
}

.team-card--willow .team-card-copy h3,
.team-card--willow .team-card-copy p {
    color: #fff;
}

.about-values-section {
    background: #fff;
}

.cta-band {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background: linear-gradient(110deg, #df5b18, #f08a31);
    color: #fff;
}

.cta-band:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 50%, rgba(255, 255, 255, 0.18), transparent 32%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.cta-inner h2 {
    max-width: 780px;
    margin: 8px 0 8px;
    font-family: Oswald, sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    text-transform: uppercase;
}

.cta-inner p {
    margin: 0;
}

.cta-inner .eyebrow {
    color: #fff;
}

.cta-band--willow .cta-inner {
    padding-right: 150px;
}

.cta-inner > div,
.cta-inner > a {
    position: relative;
    z-index: 2;
}

.cta-willow {
    position: absolute;
    right: 42px;
    bottom: -58px;
    z-index: 1;
    width: 150px;
    max-height: 220px;
    object-fit: contain;
    object-position: center bottom;
    opacity: 0.92;
}

.division-willow {
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #dce7ef;
    font-size: 12px;
    font-weight: 800;
}

.division-willow img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    object-position: center bottom;
}

.service-area-visual {
    position: relative;
}

.service-area-photo {
    height: 560px;
    object-position: center;
}

.service-area-badge {
    position: absolute;
    right: -20px;
    bottom: 24px;
    width: min(330px, 82%);
    padding: 22px;
    background: var(--cgw);
    color: #fff;
    box-shadow: var(--shadow);
}

.service-area-badge strong,
.service-area-badge span {
    display: block;
}

.service-area-badge strong {
    margin-bottom: 6px;
    font-family: Oswald, sans-serif;
    font-size: 22px;
    line-height: 1.15;
    text-transform: uppercase;
}

.service-area-badge span {
    color: #d4e1e9;
    font-size: 13px;
}

.willow-tip,
.referral-willow,
.footer-willow {
    display: flex;
    align-items: center;
}

.willow-tip {
    gap: 18px;
    margin-top: 30px;
    padding: 18px 20px 0;
    overflow: hidden;
    background: var(--soft);
    border-left: 4px solid var(--cgw-accent);
}

.willow-tip img {
    align-self: flex-end;
    width: 92px;
    height: 118px;
    object-fit: contain;
    object-position: center bottom;
}

.willow-tip p {
    margin: 0 0 18px;
    font-size: 13px;
}

.referral-willow {
    gap: 18px;
    margin-top: 28px;
    padding: 12px 20px 0;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
}

.referral-willow img {
    align-self: flex-end;
    width: 110px;
    height: 135px;
    object-fit: contain;
    object-position: center bottom;
}

.referral-willow strong,
.referral-willow span {
    display: block;
}

.referral-willow strong {
    margin-bottom: 4px;
    font-family: Oswald, sans-serif;
    font-size: 20px;
    text-transform: uppercase;
}

.referral-willow span {
    color: #cbd8e1;
    font-size: 13px;
}

.footer-willow {
    max-width: 390px;
    gap: 12px;
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
}

.footer-willow img {
    align-self: flex-end;
    width: 56px;
    height: 68px;
    object-fit: contain;
    object-position: center bottom;
}

.footer-willow strong {
    color: #fff;
}

.page-hero--404 {
    min-height: 590px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 78% 40%, rgba(238, 106, 36, 0.3), transparent 32%),
        linear-gradient(125deg, #081826, #173f61);
}

.error-grid {
    display: grid;
    grid-template-columns: 1fr 0.62fr;
    align-items: end;
    gap: 50px;
}

.error-willow {
    position: relative;
    z-index: 2;
    justify-self: end;
    width: min(380px, 100%);
    max-height: 480px;
    object-fit: contain;
    object-position: center bottom;
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cta-band--willow .cta-inner {
        padding-right: 0;
    }

    .cta-willow {
        display: none;
    }
}

@media (max-width: 980px) {
    .about-story-grid,
    .about-local-grid,
    .error-grid {
        grid-template-columns: 1fr;
    }

    .about-founder-visual {
        width: min(640px, 100%);
        margin: 0 auto 35px;
    }

    .about-local-grid > div:last-child {
        max-width: 760px;
    }

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

    .card-grid.three {
        grid-template-columns: 1fr 1fr;
    }

    .error-willow {
        justify-self: center;
        width: min(330px, 80%);
    }
}

@media (max-width: 700px) {
    .about-badge-row {
        gap: 7px;
    }

    .about-badge-row span {
        width: 100%;
    }

    .about-founder-visual {
        min-height: 500px;
        padding-bottom: 28px;
    }

    .founder-photo-shell {
        min-height: 470px;
    }

    .founder-photo-shell img {
        max-height: 450px;
    }

    .veteran-owned-card {
        right: 0;
        bottom: 0;
    }

    .about-field-collage {
        min-height: 440px;
    }

    .about-field-main {
        width: 90%;
        height: 400px;
    }

    .about-field-small {
        height: 180px;
    }

    .team-grid,
    .card-grid.three {
        grid-template-columns: 1fr 1fr;
    }

    .team-photo {
        height: 270px;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-area-badge {
        right: 0;
    }
}

@media (max-width: 520px) {
    .stats-grid,
    .team-grid,
    .card-grid.three {
        grid-template-columns: 1fr;
    }

    .stats-grid > div {
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .team-photo {
        height: 340px;
    }

    .about-field-small {
        width: 58%;
    }

    .willow-tip,
    .referral-willow {
        align-items: flex-end;
    }

    .willow-tip img,
    .referral-willow img {
        width: 76px;
    }
}
/* Restore homepage stacked photo layout */
.stacked-images {
    position: relative;
    min-height: 610px;
    width: 100%;
    isolation: isolate;
}

.stacked-images > * {
    position: absolute;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(10, 30, 55, 0.18);
}

.stacked-images .stack-main {
    top: 0;
    left: 0;
    width: 74%;
    height: 500px;
    z-index: 1;
}

.stacked-images .stack-small {
    right: 0;
    width: 42%;
    height: 235px;
    z-index: 2;
    border: 8px solid #fff;
}

.stacked-images .stack-small--top {
    top: 36px;
}

.stacked-images .stack-small--bottom {
    top: 300px;
}

.stacked-images img,
.stacked-images .placeholder-image,
.stacked-images .image-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

/* Prevent reveal animation styles from changing the children */
.stacked-images.reveal > * {
    opacity: 1;
    transform: none;
}

/* Tablet */
@media (max-width: 900px) {
    .stacked-images {
        min-height: 540px;
    }

    .stacked-images .stack-main {
        width: 76%;
        height: 440px;
    }

    .stacked-images .stack-small {
        width: 43%;
        height: 205px;
    }

    .stacked-images .stack-small--bottom {
        top: 270px;
    }
}

/* Mobile: use a simple overlapping two-photo arrangement */
@media (max-width: 640px) {
    .stacked-images {
        min-height: 465px;
        margin-bottom: 30px;
    }

    .stacked-images .stack-main {
        top: 0;
        left: 0;
        width: 88%;
        height: 350px;
    }

    .stacked-images .stack-small {
        width: 48%;
        height: 175px;
        border-width: 5px;
    }

    .stacked-images .stack-small--top {
        top: 35px;
        right: 0;
    }

    .stacked-images .stack-small--bottom {
        top: 275px;
        right: 7%;
    }
}
/*
 * 14. Styled demo forms
 * -------------------------------------------------------------------------- */
.pps-form {
    width: 100%;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid #dce3e8;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(11, 31, 51, 0.12);
    color: var(--ink);
}
.pps-form__intro {
    margin-bottom: 30px;
}
.pps-form__intro h3 {
    margin: 10px 0 10px;
    font-family: Oswald, sans-serif;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.05;
    text-transform: uppercase;
}
.pps-form__intro p {
    margin: 0;
    color: var(--muted);
}
.pps-form__section-title {
    margin: 32px 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dce3e8;
    color: var(--navy);
    font-family: Oswald, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.pps-form__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px 14px;
}
.pps-field {
    grid-column: span 12;
    min-width: 0;
}
.pps-field--full {
    grid-column: span 12;
}
.pps-field--half {
    grid-column: span 6;
}
.pps-field--quarter {
    grid-column: span 3;
}
.pps-field label,
.pps-options legend {
    display: block;
    margin: 0 0 7px;
    color: #3f4851;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}
.pps-field label span,
.pps-options legend span {
    margin-left: 2px;
    color: var(--orange);
}
.pps-field input[type="text"],
.pps-field input[type="email"],
.pps-field input[type="tel"],
.pps-field input[type="file"],
.pps-field select,
.pps-field textarea {
    display: block;
    width: 100%;
    min-height: 50px;
    margin: 0;
    border: 1px solid #bdc9d1;
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 15px;
    line-height: 1.4;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.pps-field input[type="text"],
.pps-field input[type="email"],
.pps-field input[type="tel"],
.pps-field select {
    padding: 0 14px;
}
.pps-field textarea {
    min-height: 130px;
    padding: 13px 14px;
    resize: vertical;
}
.pps-field input[type="file"] {
    min-height: 50px;
    padding: 7px;
    background: #f7f9fa;
}
.pps-field input[type="file"]::file-selector-button {
    min-height: 34px;
    margin-right: 10px;
    padding: 0 13px;
    border: 0;
    border-radius: 3px;
    background: var(--navy);
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}
.pps-field input::placeholder,
.pps-field textarea::placeholder {
    color: #89959f;
}
.pps-field input[type="text"]:focus,
.pps-field input[type="email"]:focus,
.pps-field input[type="tel"]:focus,
.pps-field input[type="file"]:focus,
.pps-field select:focus,
.pps-field textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(238, 106, 36, 0.15);
}
.pps-field small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}
.pps-options {
    margin: 4px 0 0;
    padding: 0;
    border: 0;
}
.pps-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}
.pps-choice {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    margin: 0 !important;
    padding: 10px 12px;
    border: 1px solid #d8e0e5;
    border-radius: 4px;
    background: #f8fafb;
    cursor: pointer;
}
.pps-choice:hover {
    border-color: #f1a073;
    background: #fff8f4;
}
.pps-choice input,
.pps-consent input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    flex: 0 0 auto;
    accent-color: var(--orange);
}
.pps-choice span {
    margin: 0 !important;
    color: #3f4851 !important;
    font-weight: 600;
    line-height: 1.45;
}
.pps-consent {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin: 24px 0 18px;
    color: #4b555e;
    font-size: 13px;
    line-height: 1.65;
    cursor: pointer;
}
.pps-form__legal {
    margin: 22px 0 0;
    color: #59656f;
    font-size: 12px;
    line-height: 1.75;
}
.pps-form__legal a {
    color: var(--orange);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.pps-form__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 26px;
}
.pps-form__actions .button {
    min-width: 190px;
    cursor: pointer;
}
.pps-form__demo-label {
    color: #7b8790;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.pps-form__status {
    margin-top: 20px;
    padding: 14px 16px;
    border-left: 4px solid var(--orange);
    background: #fff5ef;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
}
.pps-form__status[hidden] {
    display: none;
}
.section-dark .pps-form {
    background: #fff;
    color: var(--ink);
}
.cgw-site .pps-form__actions .button,
.cgw-site .pps-field input[type="file"]::file-selector-button {
    background: var(--cgw);
    border-color: var(--cgw);
}
.cgw-site .pps-field input[type="text"]:focus,
.cgw-site .pps-field input[type="email"]:focus,
.cgw-site .pps-field input[type="tel"]:focus,
.cgw-site .pps-field input[type="file"]:focus,
.cgw-site .pps-field select:focus,
.cgw-site .pps-field textarea:focus {
    border-color: var(--cgw-accent);
    box-shadow: 0 0 0 3px rgba(229, 138, 45, 0.16);
}
.cgw-site .pps-choice input,
.cgw-site .pps-consent input {
    accent-color: var(--cgw-accent);
}

@media (max-width: 700px) {
    .pps-form {
        padding: 26px 20px;
    }
    .pps-field--half,
    .pps-field--quarter {
        grid-column: span 12;
    }
    .pps-choice-grid {
        grid-template-columns: 1fr;
    }
    .pps-form__actions {
        align-items: stretch;
        flex-direction: column;
    }
    .pps-form__actions .button {
        width: 100%;
    }
}
/* ==========================================================
   PRIDGEN RESIDENTIAL GENERATORS PAGE
   Add to the bottom of assets/css/main.css
   ========================================================== */

.pps-residential-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    color: #fff;
    background: #081826 url("../images/home-generator-install.webp") center 48% / cover no-repeat;
    overflow: hidden;
}

.pps-residential-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 23, 36, 0.96) 0%, rgba(7, 23, 36, 0.82) 44%, rgba(7, 23, 36, 0.28) 78%, rgba(7, 23, 36, 0.48) 100%);
}

.pps-residential-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 92px;
    padding-bottom: 130px;
}

.pps-residential-hero__content h1 {
    max-width: 760px;
    margin: 18px 0 22px;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.94;
}

.pps-residential-hero__content p {
    max-width: 680px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
}

.pps-residential-hero__trust {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(1180px, calc(100% - 40px));
    transform: translateX(-50%);
    background: #fff;
    color: #112435;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.pps-residential-hero__trust span {
    padding: 21px 24px;
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.pps-residential-hero__trust span + span {
    border-left: 1px solid rgba(17, 36, 53, 0.13);
}

.pps-residential-intro {
    padding-top: 120px;
}

.pps-residential-stack {
    position: relative;
    min-height: 610px;
}

.pps-residential-stack img {
    display: block;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.pps-residential-stack__main {
    width: 78%;
    height: 540px;
}

.pps-residential-stack__small {
    position: absolute;
    right: 0;
    width: 42%;
    height: 230px;
    border: 8px solid #fff;
}

.pps-residential-stack__small--top { top: 42px; }
.pps-residential-stack__small--bottom { bottom: 12px; }
.pps-residential-copy p { max-width: 650px; }

.pps-residential-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 46px;
}

.pps-residential-service-card {
    position: relative;
    min-height: 330px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.055);
}

.pps-residential-service-card__number {
    display: inline-flex;
    margin-bottom: 52px;
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.pps-residential-service-card h3 { margin-bottom: 14px; color: #fff; }
.pps-residential-service-card p { color: rgba(255, 255, 255, 0.72); }
.pps-residential-service-card a { display: inline-flex; margin-top: 18px; color: var(--orange); font-weight: 800; }

.pps-residential-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 46px;
    background: rgba(17, 36, 53, 0.14);
}

.pps-residential-process-grid article {
    min-height: 270px;
    padding: 30px;
    background: #fff;
}

.pps-residential-process-grid article > span {
    display: inline-flex;
    margin-bottom: 48px;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.pps-residential-process-grid h3 { margin-bottom: 12px; }

.pps-residential-readiness {
    padding: 90px 0;
    background: #eef2f5;
}

.pps-residential-readiness__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.pps-residential-readiness__grid > img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.pps-residential-values {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.pps-residential-values div {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 36, 53, 0.16);
}

.pps-residential-values strong { color: #112435; }
.pps-residential-values span { color: #5d6872; }

.pps-residential-area__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.pps-residential-counties {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pps-residential-counties span {
    padding: 18px 20px;
    border-left: 4px solid var(--orange);
    background: #eef2f5;
    color: #112435;
    font-weight: 800;
}

.pps-cgw-callout {
    padding: 86px 0;
    color: #fff;
    background: linear-gradient(135deg, rgba(12, 53, 74, 0.97), rgba(14, 78, 96, 0.92)), url("../images/cgw-generator-home.webp") center / cover no-repeat;
}

.pps-cgw-callout__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.pps-cgw-callout h2,
.pps-cgw-callout p { color: #fff; }
.pps-cgw-callout p { max-width: 680px; color: rgba(255, 255, 255, 0.8); }

.pps-cgw-callout__badge {
    display: flex;
    min-height: 290px;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.pps-cgw-callout__badge strong { font-size: clamp(1.4rem, 3vw, 2.6rem); letter-spacing: 0.03em; }
.pps-cgw-callout__badge b { color: #f0b64d; font-size: clamp(3rem, 7vw, 6rem); line-height: 0.9; }
.pps-cgw-callout__badge span { margin-top: 18px; color: rgba(255, 255, 255, 0.72); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }

@media (max-width: 980px) {
    .pps-residential-hero { min-height: 600px; }
    .pps-residential-hero__trust,
    .pps-residential-service-grid,
    .pps-residential-process-grid { grid-template-columns: 1fr 1fr; }
    .pps-residential-hero__trust span:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(17, 36, 53, 0.13); border-left: 0; }
    .pps-residential-stack { min-height: 560px; }
    .pps-residential-readiness__grid,
    .pps-residential-area__grid,
    .pps-cgw-callout__grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .pps-residential-hero { min-height: 670px; background-position: 62% center; }
    .pps-residential-hero__content { padding-top: 72px; padding-bottom: 170px; }
    .pps-residential-hero__content h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
    .pps-residential-hero__trust,
    .pps-residential-service-grid,
    .pps-residential-process-grid,
    .pps-residential-counties { grid-template-columns: 1fr; }
    .pps-residential-hero__trust span + span,
    .pps-residential-hero__trust span:last-child { border-top: 1px solid rgba(17, 36, 53, 0.13); border-left: 0; }
    .pps-residential-stack { min-height: 470px; }
    .pps-residential-stack__main { width: 88%; height: 410px; }
    .pps-residential-stack__small { width: 46%; height: 160px; border-width: 5px; }
    .pps-residential-readiness__grid > img { min-height: 340px; }
    .pps-residential-values div { grid-template-columns: 1fr; gap: 7px; }
    .pps-cgw-callout__badge { min-height: 240px; padding: 30px; }
}
/* Residential hero container alignment fix */
.pps-residential-hero__content.container {
    width: calc(100% - 40px);
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

/* Constrain the text without constraining the main container */
.pps-residential-hero__content h1 {
    max-width: 680px;
}

.pps-residential-hero__content > p {
    max-width: 650px;
}

.pps-residential-hero__content .button-row {
    max-width: 760px;
}

@media (max-width: 767px) {
    .pps-residential-hero__content.container {
        width: calc(100% - 32px);
    }

    .pps-residential-hero__content h1,
    .pps-residential-hero__content > p,
    .pps-residential-hero__content .button-row {
        max-width: none;
    }
}
