/*
Theme Name: BK Concrete Experts
Theme URI: https://ncconcretecontractor.com/
Author: Local Rev Growth
Description: Custom conversion-focused WordPress theme for BK Concrete Experts LLC.
Version: 1.2.1
Requires at least: 6.4
Requires PHP: 8.1
Text Domain: bk-concrete-experts
*/

:root {
    --bk-navy: #07192d;
    --bk-navy-light: #0d2845;
    --bk-red: #dc2028;
    --bk-red-dark: #b8151c;
    --bk-gold: #f4b41a;
    --bk-ink: #142033;
    --bk-muted: #5d6877;
    --bk-line: #dce2e8;
    --bk-surface: #f4f7f9;
    --bk-white: #fff;
    --bk-shadow: 0 16px 38px rgba(7, 25, 45, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body:not(.home) {
    margin: 0;
    color: var(--bk-ink);
    background: var(--bk-surface);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

.bk-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 10px 14px;
    color: var(--bk-white);
    background: var(--bk-red);
    border-radius: 5px;
    transform: translateY(-160%);
}

.bk-skip-link:focus {
    transform: translateY(0);
}

.bk-inner-wrap {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.bk-site-header {
    position: relative;
    z-index: 20;
    color: var(--bk-white);
    background: var(--bk-navy);
    border-bottom: 4px solid var(--bk-red);
}

.bk-site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    gap: 28px;
}

.bk-site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.bk-site-logo img {
    display: block;
    width: 190px;
    height: auto;
}

.bk-site-nav {
    margin-left: auto;
}

.bk-site-nav ul {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bk-site-nav a {
    color: var(--bk-white);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
}

.bk-site-nav a:hover,
.bk-site-nav a:focus-visible {
    color: var(--bk-gold);
}

.bk-header-phone,
.bk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    color: var(--bk-white);
    background: var(--bk-red);
    border: 0;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(220, 32, 40, 0.24);
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.bk-header-phone:hover,
.bk-header-phone:focus-visible,
.bk-button:hover,
.bk-button:focus-visible {
    color: var(--bk-white);
    background: var(--bk-red-dark);
}

.bk-page-hero {
    padding: 70px 0 64px;
    color: var(--bk-white);
    background:
        linear-gradient(100deg, rgba(7, 25, 45, 0.98), rgba(7, 25, 45, 0.86)),
        url("assets/bk-concrete-experts/hero-driveway-pour.png") center 43% / cover;
}

.bk-page-hero__eyebrow {
    margin: 0 0 10px;
    color: var(--bk-gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.bk-breadcrumbs {
    margin-bottom: 16px;
}

.bk-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bk-breadcrumbs li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.76rem;
    font-weight: 700;
}

.bk-breadcrumbs li:not(:last-child)::after {
    margin-left: 10px;
    color: var(--bk-gold);
    content: "/";
}

.bk-breadcrumbs a {
    color: var(--bk-white);
    text-decoration: none;
}

.bk-breadcrumbs a:hover,
.bk-breadcrumbs a:focus-visible {
    color: var(--bk-gold);
}

.bk-page-hero h1 {
    max-width: 850px;
    margin: 0;
    color: var(--bk-white);
    font-size: clamp(2.25rem, 5vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.bk-page-hero__description {
    max-width: 720px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
}

.bk-inner-main {
    min-height: 50vh;
}

.bk-content-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 42px;
    padding-block: 64px 82px;
}

.bk-content-shell--single {
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
}

.bk-content-main {
    min-width: 0;
}

.bk-content-main > .bk-location-directory {
    margin-top: 28px;
}

.bk-entry,
.bk-list-card,
.bk-sidebar-card,
.bk-empty-state {
    background: var(--bk-white);
    border: 1px solid var(--bk-line);
    border-radius: 10px;
    box-shadow: var(--bk-shadow);
}

.bk-entry {
    padding: clamp(28px, 5vw, 58px);
}

.bk-entry__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 0 0 24px;
    color: var(--bk-muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.bk-entry__image {
    width: 100%;
    height: auto;
    margin: 0 0 30px;
    border-radius: 8px;
}

.bk-entry__content > :first-child {
    margin-top: 0;
}

.bk-entry__content h2,
.bk-entry__content h3 {
    margin-top: 1.7em;
    color: var(--bk-navy);
    line-height: 1.16;
}

.bk-entry__content a,
.bk-list-card a,
.bk-pagination a {
    color: var(--bk-red-dark);
}

.bk-entry__content img {
    max-width: 100%;
    height: auto;
}

.bk-link-section {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid var(--bk-line);
}

.bk-link-section > h2 {
    margin: 0 0 12px;
    color: var(--bk-navy);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.12;
}

.bk-link-section__eyebrow {
    margin: 0 0 8px;
    color: var(--bk-red-dark);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bk-context-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.bk-context-links a,
.bk-related-posts a {
    color: var(--bk-navy);
    font-weight: 800;
    text-decoration: none;
}

.bk-context-links a {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bk-surface);
    border: 1px solid var(--bk-line);
    border-radius: 6px;
}

.bk-context-links a:hover,
.bk-context-links a:focus-visible,
.bk-related-posts a:hover,
.bk-related-posts a:focus-visible {
    color: var(--bk-red-dark);
}

.bk-related-posts {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bk-related-posts li {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bk-line);
}

.bk-location-directory {
    padding: clamp(28px, 5vw, 50px);
    background: var(--bk-white);
    border: 1px solid var(--bk-line);
    border-radius: 10px;
    box-shadow: var(--bk-shadow);
}

.bk-location-directory__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 28px;
}

.bk-location-directory__grid h3 {
    margin: 0 0 12px;
    color: var(--bk-red-dark);
}

.bk-location-directory__grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bk-location-directory__grid li + li {
    margin-top: 7px;
}

.bk-location-directory__grid a {
    color: var(--bk-navy);
    font-weight: 700;
    text-decoration: none;
}

.bk-location-directory__grid a:hover,
.bk-location-directory__grid a:focus-visible {
    color: var(--bk-red-dark);
    text-decoration: underline;
}

/* Layout bridge for the production site's migrated section markup. */
.bk-entry--legacy {
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.bk-content-shell--legacy {
    grid-template-columns: minmax(0, 1fr);
}

.bk-entry--legacy .bk-entry__content > section,
.bk-entry--legacy .bk-entry__content > .Service-Page {
    margin: 0 0 28px;
    padding: clamp(28px, 5vw, 54px);
    overflow: hidden;
    background: var(--bk-white);
    border: 1px solid var(--bk-line);
    border-radius: 10px;
    box-shadow: var(--bk-shadow);
}

.bk-entry--legacy .wrap {
    width: 100%;
    margin-inline: auto;
}

.bk-entry--legacy .Section-Heading,
.bk-entry--legacy .Heading,
.bk-entry--legacy .Heading1 {
    margin: 0 0 14px;
    color: var(--bk-navy);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.bk-entry--legacy .Sub-Heading,
.bk-entry--legacy .Heading3 {
    margin-bottom: 18px;
    color: var(--bk-red-dark);
    font-weight: 800;
}

.bk-entry--legacy .bk-entry__content > .Banner {
    color: var(--bk-white);
    background:
        linear-gradient(110deg, rgba(7, 25, 45, 0.98), rgba(13, 40, 69, 0.95)),
        url("assets/bk-concrete-experts/hero-driveway-pour.png") center / cover;
    border-color: rgba(255, 255, 255, 0.08);
}

.bk-entry--legacy .Banner .Row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.7fr);
    gap: 34px;
    align-items: center;
}

.bk-entry--legacy .Banner .Heading1,
.bk-entry--legacy .Banner .Heading3 {
    color: var(--bk-white);
}

.bk-entry--legacy .Banner ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.bk-entry--legacy .Banner li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 7px;
}

.bk-entry--legacy .Banner .Icon {
    flex: 0 0 36px;
}

.bk-entry--legacy .Banner .Icon img {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: invert(1);
}

.bk-entry--legacy .Banner .Text {
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.25;
}

.bk-entry--legacy .Banner .Form-Div {
    padding: 26px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9px;
}

.bk-entry--legacy .Banner .Form-Div p {
    margin: 0 0 16px;
}

.bk-entry--legacy .Banner .Form-Div p:last-child {
    margin-bottom: 0;
}

.bk-entry--legacy .Text-Section > .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: clamp(30px, 5vw, 58px);
    align-items: center;
}

.bk-entry--legacy .Text-Section.Image-Left > .wrap > .Text-Div {
    order: 2;
}

.bk-entry--legacy .Text-Section.Image-Left > .wrap > .Image-Div {
    order: 1;
}

.bk-entry--legacy .Image-Div.Mobile {
    display: none;
}

.bk-entry--legacy .Text-Section > .wrap > .Image-Div,
.bk-entry--legacy .Text-Section .Image-Div.Mobile {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.bk-entry--legacy .Text-Section > .wrap > .Image-Div {
    display: grid;
}

.bk-entry--legacy .Text-Section .Image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
}

.bk-entry--legacy .Text-Section .Image2 {
    margin-top: 28px;
}

.bk-entry--legacy .Count-Div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.bk-entry--legacy .Count-Div .Col4 {
    padding: 16px 10px;
    text-align: center;
    background: var(--bk-surface);
    border-radius: 7px;
}

.bk-entry--legacy .Count-Div .Num {
    color: var(--bk-red);
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1;
}

.bk-entry--legacy .Count-Div .Title {
    margin-top: 7px;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
}

.bk-entry--legacy .Service-Section .Row,
.bk-entry--legacy .Process_Slider {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bk-entry--legacy .Service-Div.Heading-Div {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
}

.bk-entry--legacy .Section-Button a,
.bk-entry--legacy .Button a,
.bk-entry--legacy .Button-Div a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    color: var(--bk-white);
    background: var(--bk-red);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.bk-entry--legacy .Service-Div:not(.Heading-Div),
.bk-entry--legacy .Process-Div {
    height: 100%;
    overflow: hidden;
    background: var(--bk-surface);
    border: 1px solid var(--bk-line);
    border-radius: 8px;
}

.bk-entry--legacy .Service-Div:not(.Heading-Div) > .Image-Div img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.bk-entry--legacy .Service-Div:not(.Heading-Div) > .Text-Div,
.bk-entry--legacy .Process-Div {
    padding: 20px;
}

.bk-entry--legacy .Service-Div .Title,
.bk-entry--legacy .Process-Div .Title {
    margin-bottom: 8px;
    color: var(--bk-navy);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.2;
}

.bk-entry--legacy .Service-Div .Text,
.bk-entry--legacy .Process-Div .Text {
    color: var(--bk-muted);
    font-size: 0.9rem;
}

.bk-entry--legacy .Service-Div .Button {
    margin-top: 16px;
}

.bk-entry--legacy .Process-Section > .wrap > .Sub-Heading {
    max-width: 780px;
}

.bk-entry--legacy .Process-Div .Flex-Div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.bk-entry--legacy .Process-Div .Icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.bk-entry--legacy .Process-Div .Num {
    color: rgba(220, 32, 40, 0.18);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.bk-entry--legacy .Faq-Div,
.bk-entry--legacy .accordion-container {
    display: grid;
    gap: 12px;
}

.bk-entry--legacy .accordion-title {
    padding: 15px 18px;
    color: var(--bk-navy);
    background: var(--bk-surface);
    border: 1px solid var(--bk-line);
    border-radius: 7px 7px 0 0;
    font-weight: 900;
}

.bk-entry--legacy .accordion-content {
    margin-top: -12px;
    padding: 2px 18px 16px;
    color: var(--bk-muted);
    background: var(--bk-surface);
    border: 1px solid var(--bk-line);
    border-top: 0;
    border-radius: 0 0 7px 7px;
}

.bk-entry--legacy .Testimonial,
.bk-entry--legacy .Contact-Info {
    padding: 22px;
    background: var(--bk-surface);
    border: 1px solid var(--bk-line);
    border-radius: 8px;
}

.bk-post-list {
    display: grid;
    gap: 22px;
}

.bk-list-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    overflow: hidden;
}

.bk-list-card--no-image {
    grid-template-columns: 1fr;
}

.bk-list-card__image {
    min-height: 220px;
    background: var(--bk-navy-light);
}

.bk-list-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bk-list-card__body {
    padding: 26px 28px;
}

.bk-list-card__body h2 {
    margin: 0 0 10px;
    color: var(--bk-navy);
    font-size: 1.5rem;
    line-height: 1.15;
}

.bk-list-card__body h2 a {
    color: inherit;
    text-decoration: none;
}

.bk-list-card__body h2 a:hover,
.bk-list-card__body h2 a:focus-visible {
    color: var(--bk-red);
}

.bk-list-card__body p {
    margin-bottom: 0;
}

.bk-sidebar-card {
    position: sticky;
    top: 24px;
    padding: 28px;
}

.bk-sidebar-card h2 {
    margin: 0 0 10px;
    color: var(--bk-navy);
    font-size: 1.45rem;
    line-height: 1.15;
}

.bk-sidebar-card p {
    margin: 0 0 20px;
    color: var(--bk-muted);
}

.bk-sidebar-links {
    display: grid;
    gap: 7px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--bk-line);
}

.bk-sidebar-links a {
    color: var(--bk-navy);
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
}

.bk-sidebar-links a:hover,
.bk-sidebar-links a:focus-visible {
    color: var(--bk-red-dark);
}

.bk-empty-state {
    padding: 50px;
    text-align: center;
}

.bk-empty-state h2 {
    margin-top: 0;
    color: var(--bk-navy);
}

.bk-empty-state .search-form {
    display: flex;
    max-width: 540px;
    margin: 22px auto 0;
}

.bk-empty-state .search-field {
    min-width: 0;
    flex: 1;
    padding: 12px;
    border: 1px solid var(--bk-line);
    border-radius: 4px 0 0 4px;
}

.bk-empty-state .search-submit {
    padding: 0 18px;
    color: var(--bk-white);
    background: var(--bk-red);
    border: 0;
    border-radius: 0 4px 4px 0;
    font-weight: 800;
}

.bk-pagination {
    margin-top: 32px;
}

.bk-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bk-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 12px;
    color: var(--bk-navy);
    background: var(--bk-white);
    border: 1px solid var(--bk-line);
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
}

.bk-pagination .current,
.bk-pagination a:hover,
.bk-pagination a:focus-visible {
    color: var(--bk-white);
    background: var(--bk-red);
    border-color: var(--bk-red);
}

.bk-site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: var(--bk-navy);
}

.bk-site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-block: 58px;
}

.bk-site-footer img {
    width: 190px;
    height: auto;
}

.bk-site-footer h2 {
    margin: 0 0 14px;
    color: var(--bk-white);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bk-site-footer p {
    max-width: 480px;
}

.bk-site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bk-site-footer li + li {
    margin-top: 8px;
}

.bk-site-footer a {
    color: inherit;
    text-decoration: none;
}

.bk-site-footer a:hover,
.bk-site-footer a:focus-visible {
    color: var(--bk-gold);
}

.bk-site-footer__bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
}

.bk-site-footer__bottom .bk-inner-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.bk-site-footer__legal {
    display: flex;
    gap: 16px;
}

@media (max-width: 880px) {
    .bk-site-header__bar {
        flex-wrap: wrap;
        padding-block: 18px;
    }

    .bk-site-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
    }

    .bk-site-nav ul {
        justify-content: center;
        min-width: max-content;
    }

    .bk-content-shell {
        grid-template-columns: 1fr;
    }

    .bk-sidebar-card {
        position: static;
    }

    .bk-site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .bk-entry--legacy .Banner .Row,
    .bk-entry--legacy .Text-Section > .wrap {
        grid-template-columns: 1fr;
    }

    .bk-entry--legacy .Text-Section.Image-Left > .wrap > .Text-Div,
    .bk-entry--legacy .Text-Section.Image-Left > .wrap > .Image-Div {
        order: initial;
    }

    .bk-entry--legacy .Image-Div.Desktop {
        display: none;
    }

    .bk-entry--legacy .Image-Div.Mobile {
        display: grid;
        margin-bottom: 22px;
    }

    .bk-entry--legacy .Service-Section .Row,
    .bk-entry--legacy .Process_Slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .bk-inner-wrap {
        width: min(100% - 28px, 1160px);
    }

    .bk-site-header__bar {
        justify-content: center;
    }

    .bk-site-logo img,
    .bk-site-footer img {
        width: 166px;
    }

    .bk-site-nav {
        overflow: visible;
    }

    .bk-site-nav ul {
        flex-wrap: wrap;
        gap: 12px 22px;
        min-width: 0;
    }

    .bk-header-phone {
        min-height: 44px;
        padding-inline: 14px;
    }

    .bk-page-hero {
        padding-block: 52px;
    }

    .bk-content-shell {
        padding-block: 38px 56px;
    }

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

    .bk-list-card__image {
        min-height: 190px;
    }

    .bk-entry:not(.bk-entry--legacy),
    .bk-empty-state {
        padding: 26px 22px;
    }

    .bk-site-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bk-entry--legacy .bk-entry__content > section,
    .bk-entry--legacy .bk-entry__content > .Service-Page {
        margin-bottom: 18px;
        padding: 24px 20px;
    }

    .bk-entry--legacy .Banner ul,
    .bk-entry--legacy .Service-Section .Row,
    .bk-entry--legacy .Process_Slider,
    .bk-entry--legacy .Count-Div {
        grid-template-columns: 1fr;
    }

    .bk-entry--legacy .Service-Div.Heading-Div {
        display: block;
    }

    .bk-entry--legacy .Section-Button {
        margin-top: 18px;
    }
}

/* Internal conversion shell: mirrors the homepage's hierarchy and visual rhythm. */
body:not(.home) {
    --bk-navy: #071629;
    --bk-navy-light: #0a1d34;
    --bk-red: #e0191d;
    --bk-red-dark: #a9080d;
    --bk-gold: #f6b800;
    --bk-condensed: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    color: #142033;
    background: #eef2f5;
    -webkit-font-smoothing: antialiased;
}

.bk-topbar {
    position: relative;
    z-index: 30;
    color: var(--bk-white);
    background: linear-gradient(90deg, var(--bk-red-dark), var(--bk-red) 55%, #bc0d12);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.08);
}

.bk-topbar__inner {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
}

.bk-topbar__inner span {
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.48);
    font-family: var(--bk-condensed);
    font-size: 0.78rem;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.bk-topbar__inner span:last-child {
    border-right: 0;
}

.bk-topbar__inner b {
    margin-right: 7px;
    font-family: Arial, sans-serif;
}

.bk-site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(5, 19, 36, 0.99);
}

.bk-site-header__bar {
    display: grid;
    grid-template-columns: minmax(200px, 245px) minmax(360px, 1fr) auto auto;
    min-height: 86px;
    gap: 24px;
}

.bk-site-logo img {
    width: 245px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.bk-site-nav {
    margin-left: 0;
}

.bk-site-nav ul {
    justify-content: center;
    gap: clamp(14px, 1.8vw, 26px);
}

.bk-site-nav a {
    position: relative;
    display: inline-block;
    padding: 14px 0;
    color: #e5edf4;
    font-family: var(--bk-condensed);
    font-size: 0.75rem;
    font-weight: 400;
}

.bk-site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 2px;
    background: var(--bk-red);
    content: "";
    transform: scaleX(0);
    transition: transform 160ms ease;
}

.bk-site-nav a:hover::after,
.bk-site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.bk-header-phone {
    display: grid;
    min-height: 0;
    padding: 0;
    gap: 2px;
    color: var(--bk-white);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    text-align: right;
}

.bk-header-phone:hover,
.bk-header-phone:focus-visible {
    color: var(--bk-white);
    background: transparent;
}

.bk-header-phone small {
    color: #c2cdd6;
    font-family: var(--bk-condensed);
    font-size: 0.62rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.bk-header-phone strong {
    font-family: var(--bk-condensed);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1;
}

.bk-header-cta,
.bk-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    gap: 10px;
    color: var(--bk-white);
    background: linear-gradient(180deg, #ed2024, #c80d12);
    border: 0;
    border-radius: 4px;
    box-shadow: 0 10px 24px rgba(198, 8, 13, 0.28);
    font-family: var(--bk-condensed);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.045em;
    text-decoration: none;
    text-transform: uppercase;
    transition: filter 160ms ease, transform 160ms ease;
}

.bk-header-cta:hover,
.bk-header-cta:focus-visible,
.bk-button:hover,
.bk-button:focus-visible {
    color: var(--bk-white);
    background: linear-gradient(180deg, #ed2024, #c80d12);
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.bk-button--wide {
    width: 100%;
}

.bk-button--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: none;
}

.bk-button--outline:hover,
.bk-button--outline:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

.bk-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--bk-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
}

.bk-menu-toggle span,
.bk-menu-toggle::before,
.bk-menu-toggle::after {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    content: "";
}

.bk-page-hero {
    position: relative;
    isolation: isolate;
    padding: 42px 0 92px;
    background:
        linear-gradient(90deg, rgba(3, 17, 33, 0.97) 0%, rgba(4, 21, 39, 0.88) 49%, rgba(4, 21, 39, 0.62) 100%),
        linear-gradient(0deg, rgba(4, 18, 34, 0.82), transparent 55%),
        url("assets/bk-concrete-experts/hero-driveway-pour.png") center / cover;
}

.bk-page-hero::after {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 150px;
    background: linear-gradient(0deg, rgba(3, 17, 33, 0.96), transparent);
    content: "";
}

.bk-page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.72fr);
    align-items: center;
    gap: clamp(40px, 6vw, 74px);
}

.bk-page-hero__eyebrow {
    display: flex;
    margin-bottom: 16px;
    align-items: center;
    gap: 10px;
    color: #e4ebf1;
    font-family: var(--bk-condensed);
    font-size: 0.76rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.bk-page-hero__eyebrow span {
    color: var(--bk-gold);
    letter-spacing: 0;
}

.bk-page-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--bk-white);
    font-family: var(--bk-condensed);
    font-size: clamp(3.25rem, 5.2vw, 5rem);
    font-weight: 400;
    letter-spacing: 0.005em;
    line-height: 0.94;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.bk-page-hero h1::after {
    display: block;
    width: 88px;
    height: 6px;
    margin-top: 20px;
    background: var(--bk-red);
    content: "";
}

.bk-page-hero__description {
    max-width: 720px;
    margin: 18px 0 0;
    color: #c3ced8;
    font-size: 1rem;
    line-height: 1.65;
}

.bk-page-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.bk-page-proof > div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

.bk-page-proof span {
    display: grid;
    width: 38px;
    height: 38px;
    grid-row: span 2;
    place-items: center;
    color: var(--bk-white);
    background: rgba(224, 25, 29, 0.08);
    border: 2px solid var(--bk-red);
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-weight: 900;
}

.bk-page-proof strong,
.bk-page-proof small {
    display: block;
}

.bk-page-proof strong {
    color: var(--bk-white);
    font-family: var(--bk-condensed);
    font-size: 0.76rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.bk-page-proof small {
    color: #aebdca;
    font-size: 0.67rem;
    line-height: 1.35;
}

.bk-hero-cta {
    overflow: hidden;
    padding: 0 24px 24px;
    color: var(--bk-ink);
    background: rgba(255, 255, 255, 0.97);
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.bk-hero-cta__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 -24px 21px;
    color: var(--bk-white);
    font-family: var(--bk-condensed);
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
}

.bk-hero-cta__tabs span {
    padding: 9px;
    background: var(--bk-red);
}

.bk-hero-cta__tabs span:last-child {
    background: var(--bk-navy);
}

.bk-hero-cta__eyebrow {
    margin: 0 0 5px;
    color: var(--bk-red);
    font-family: var(--bk-condensed);
    font-size: 0.73rem;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.bk-hero-cta h2 {
    margin: 0;
    color: var(--bk-ink);
    font-family: var(--bk-condensed);
    font-size: clamp(1.9rem, 3vw, 2.55rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 0.98;
    text-transform: uppercase;
}

.bk-hero-cta ul,
.bk-sidebar-card ul {
    display: grid;
    gap: 9px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.bk-hero-cta li,
.bk-sidebar-card li {
    position: relative;
    padding-left: 19px;
    color: #56616b;
    font-size: 0.79rem;
}

.bk-hero-cta li::before,
.bk-sidebar-card li::before {
    position: absolute;
    left: 0;
    color: var(--bk-red);
    content: "◆";
    font-size: 0.66rem;
}

.bk-hero-cta__phone {
    display: block;
    margin-top: 12px;
    color: var(--bk-navy);
    font-family: var(--bk-condensed);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.bk-trust-rail {
    position: relative;
    z-index: 8;
    width: min(1180px, calc(100% - 44px));
    margin: -48px auto 0;
    color: #152235;
    background: var(--bk-white);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.bk-trust-rail__inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 88px;
    align-items: center;
    padding: 0 16px;
}

.bk-trust-rail__inner > div {
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    min-height: 54px;
    align-items: center;
    padding: 0 16px;
    gap: 11px;
    border-right: 1px solid #b5bdc5;
}

.bk-trust-rail__inner > div:last-child {
    border-right: 0;
}

.bk-trust-rail__inner span {
    display: grid;
    width: 39px;
    height: 39px;
    grid-row: span 2;
    place-items: center;
    color: var(--bk-red);
    border: 2px solid var(--bk-red);
    border-radius: 50%;
    font-weight: 900;
}

.bk-trust-rail strong,
.bk-trust-rail small {
    display: block;
}

.bk-trust-rail strong {
    color: #172236;
    font-family: var(--bk-condensed);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.035em;
    line-height: 1.1;
    text-transform: uppercase;
}

.bk-trust-rail small {
    color: #56616b;
    font-size: 0.6rem;
    line-height: 1.25;
}

.bk-service-strip {
    margin-top: -42px;
    padding: 70px 0 24px;
    color: var(--bk-white);
    background: var(--bk-navy);
}

.bk-service-strip .bk-inner-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bk-service-strip span,
.bk-service-strip a {
    padding: 8px 12px;
    font-family: var(--bk-condensed);
    font-size: 0.7rem;
    letter-spacing: 0.045em;
    text-decoration: none;
    text-transform: uppercase;
}

.bk-service-strip span {
    color: var(--bk-gold);
}

.bk-service-strip a {
    color: var(--bk-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3px;
}

.bk-service-strip a:hover,
.bk-service-strip a:focus-visible {
    background: var(--bk-red);
    border-color: var(--bk-red);
}

.bk-content-shell {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 38px;
    padding-block: 68px 84px;
}

.bk-content-shell--legacy {
    grid-template-columns: minmax(0, 1fr);
}

.bk-entry {
    overflow: hidden;
    padding: clamp(28px, 5vw, 56px);
    border-top: 5px solid var(--bk-red);
    border-radius: 9px;
    box-shadow: 0 16px 38px rgba(7, 25, 45, 0.12);
}

.bk-entry--legacy {
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.bk-entry--legacy .bk-entry__content > .Banner {
    display: none;
}

.bk-entry__content h2 {
    position: relative;
    padding-top: 12px;
    font-family: var(--bk-condensed);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bk-entry__content h2::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 3px;
    background: var(--bk-red);
    content: "";
}

.bk-entry__content h3 {
    font-family: var(--bk-condensed);
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
}

.bk-sidebar-card {
    top: 28px;
    overflow: hidden;
    padding: 30px;
    color: var(--bk-white);
    background:
        linear-gradient(150deg, rgba(7, 22, 41, 0.96), rgba(10, 29, 52, 0.96)),
        url("assets/bk-concrete-experts/service-installation.jpg") center / cover;
    border: 0;
    border-radius: 9px;
    box-shadow: 0 16px 38px rgba(7, 25, 45, 0.2);
}

.bk-sidebar-card__eyebrow {
    margin: 0 0 7px !important;
    color: var(--bk-gold) !important;
    font-family: var(--bk-condensed);
    font-size: 0.72rem !important;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.bk-sidebar-card h2 {
    color: var(--bk-white);
    font-family: var(--bk-condensed);
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
}

.bk-sidebar-card p,
.bk-sidebar-card li {
    color: #c4d0da;
}

.bk-sidebar-card__phone {
    display: block;
    margin-top: 14px;
    color: var(--bk-white);
    font-family: var(--bk-condensed);
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.bk-closing-cta {
    padding: 76px 0;
    color: var(--bk-white);
    background:
        linear-gradient(90deg, rgba(4, 19, 36, 0.97), rgba(4, 19, 36, 0.74)),
        url("assets/bk-concrete-experts/hero-driveway-pour.png") center 54% / cover;
    text-align: center;
}

.bk-closing-cta p {
    margin: 0 0 8px;
    color: var(--bk-gold);
    font-family: var(--bk-condensed);
    font-size: 0.76rem;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.bk-closing-cta h2 {
    max-width: 780px;
    margin: 0 auto;
    font-family: var(--bk-condensed);
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 0.95;
    text-transform: uppercase;
}

.bk-closing-cta > .bk-inner-wrap > span {
    display: block;
    max-width: 650px;
    margin: 16px auto 24px;
    color: #c5d1da;
}

.bk-closing-cta > .bk-inner-wrap > div {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.bk-site-footer__grid {
    grid-template-columns: 1.45fr repeat(3, minmax(0, 0.72fr));
    gap: 42px;
}

.bk-site-footer h2 {
    font-family: var(--bk-condensed);
    font-weight: 400;
}

.bk-site-footer__phone {
    display: inline-block;
    margin-top: 6px;
    color: var(--bk-white) !important;
    font-family: var(--bk-condensed);
    font-size: 1.35rem;
    letter-spacing: 0.03em;
}

@media (max-width: 1080px) {
    .bk-site-header__bar {
        grid-template-columns: minmax(180px, 225px) 1fr auto;
    }

    .bk-header-phone {
        display: none;
    }

    .bk-topbar__inner span {
        padding-inline: 18px;
    }

    .bk-trust-rail__inner > div {
        padding-inline: 10px;
    }
}

@media (max-width: 920px) {
    .bk-topbar__inner span:last-child {
        display: none;
    }

    .bk-site-header__bar {
        position: relative;
        display: grid;
        grid-template-columns: 1fr auto auto;
        padding-block: 14px;
    }

    .bk-site-nav {
        position: absolute;
        z-index: 50;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        width: 100%;
        padding: 10px 20px 18px;
        background: var(--bk-navy);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 16px 25px rgba(0, 0, 0, 0.24);
    }

    .bk-site-nav.is-open {
        display: block;
    }

    .bk-site-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .bk-menu-toggle {
        display: block;
    }

    .bk-page-hero__grid {
        grid-template-columns: 1fr;
    }

    .bk-page-hero__copy {
        max-width: 760px;
    }

    .bk-hero-cta {
        max-width: 570px;
    }

    .bk-trust-rail__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-block: 16px;
    }

    .bk-trust-rail__inner > div:nth-child(3) {
        border-right: 0;
    }

    .bk-trust-rail__inner > div:nth-child(n + 4) {
        margin-top: 13px;
    }

    .bk-service-strip .bk-inner-wrap {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .bk-service-strip span,
    .bk-service-strip a {
        flex: 0 0 auto;
    }

    .bk-content-shell {
        grid-template-columns: 1fr;
    }

    .bk-site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .bk-location-directory__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .bk-topbar__inner {
        justify-content: center;
    }

    .bk-topbar__inner span {
        padding: 0;
        border: 0;
        font-size: 0.67rem;
    }

    .bk-topbar__inner span:not(:first-child),
    .bk-header-cta {
        display: none;
    }

    .bk-site-header__bar {
        grid-template-columns: 1fr auto;
    }

    .bk-site-logo img {
        width: 185px;
    }

    .bk-page-hero {
        padding: 36px 0 82px;
    }

    .bk-page-hero h1 {
        font-size: clamp(2.65rem, 13vw, 3.55rem);
    }

    .bk-page-hero__description {
        font-size: 0.9rem;
    }

    .bk-page-proof {
        grid-template-columns: 1fr;
    }

    .bk-hero-cta {
        padding-inline: 20px;
    }

    .bk-hero-cta__tabs {
        margin-inline: -20px;
    }

    .bk-trust-rail {
        width: min(100% - 28px, 1180px);
    }

    .bk-trust-rail__inner {
        grid-template-columns: 1fr;
        padding: 10px 16px;
    }

    .bk-trust-rail__inner > div,
    .bk-trust-rail__inner > div:nth-child(3) {
        min-height: 64px;
        margin: 0;
        border-right: 0;
        border-bottom: 1px solid #d4d9de;
    }

    .bk-trust-rail__inner > div:last-child {
        border-bottom: 0;
    }

    .bk-service-strip {
        padding-top: 66px;
    }

    .bk-service-strip span {
        display: none;
    }

    .bk-content-shell {
        padding-block: 44px 58px;
    }

    .bk-closing-cta {
        padding-block: 60px;
    }

    .bk-closing-cta > .bk-inner-wrap > div {
        display: grid;
    }

    .bk-site-footer__grid {
        grid-template-columns: 1fr;
    }

    .bk-context-links,
    .bk-location-directory__grid {
        grid-template-columns: 1fr;
    }

    .bk-site-footer__bottom .bk-inner-wrap {
        display: grid;
    }
}
