/* =========================================================
   BD LAND DIGITAL SURVEY
   HOMEPAGE
   Editorial / Engineering Design
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {
    --bd-black: #0a0a0a;
    --bd-black-soft: #111111;
    --bd-dark: #171717;

    --bd-white: #ffffff;
    --bd-off-white: #f5f5f2;

    --bd-gray-100: #eeeeeb;
    --bd-gray-200: #d9d9d5;
    --bd-gray-300: #b7b7b2;
    --bd-gray-500: #777771;

    --bd-accent: #c9ff45;
    --bd-accent-dark: #a8dd28;

    --bd-border: rgba(0, 0, 0, .13);
    --bd-border-light: rgba(255, 255, 255, .15);

    --bd-container: 1380px;
}


/* =========================================================
   BASE
========================================================= */

.homepage-offset {
    width: 100%;
    overflow: hidden;
}

.container {
    width: min(calc(100% - 64px), var(--bd-container));
    margin-left: auto;
    margin-right: auto;
}

.bd-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
}

.bd-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.bd-label::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: currentColor;
}

.bd-section-heading {
    margin: 0;
    max-width: 900px;
    font-size: clamp(42px, 5vw, 82px);
    line-height: .96;
    font-weight: 500;
    letter-spacing: -.055em;
}

.bd-section-heading span {
    color: var(--bd-gray-500);
}

.bd-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    border-bottom: 1px solid currentColor;
    padding-bottom: 7px;
    transition: gap .25s ease, opacity .25s ease;
}

.bd-link span {
    font-size: 16px;
}

.bd-link:hover {
    gap: 18px;
    opacity: .7;
}


/* =========================================================
   HERO
   The hero image is applied as a CSS background-image
   (set inline via the $heroImage blade variable) rather
   than an <img> tag, so cropping/positioning is controlled
   entirely here and the markup stays simpler.
========================================================= */

.bd-hero {
    position: relative;

    min-height: 88vh;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background-color: var(--bd-black-soft);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: #ffffff;
}

/* Fixed backgrounds are unreliable/janky on touch devices, so scroll normally there */
@media (max-width: 991px), (pointer: coarse) {

    .bd-hero {
        background-attachment: scroll;
    }

}

/* DARK IMAGE OVERLAY */

.bd-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .88) 0%,
            rgba(0, 0, 0, .72) 30%,
            rgba(0, 0, 0, .45) 62%,
            rgba(0, 0, 0, .34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .18) 0%,
            rgba(0, 0, 0, .12) 42%,
            rgba(0, 0, 0, .76) 100%
        );
}

/* TECHNICAL GRID */

.bd-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: .65;

    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 72px 72px;

    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), rgba(0, 0, 0, 0));
}

/* HERO CONTENT */

.bd-hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    padding-top: 180px;
    padding-bottom: 92px;
}

.bd-hero-copy {
    max-width: 920px;
}

.bd-hero-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 28px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(0, 0, 0, .20);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.bd-hero-title {
    margin: 0;
    max-width: 1050px;
    font-size: clamp(58px, 8vw, 126px);
    line-height: .86;
    font-weight: 500;
    letter-spacing: -.065em;
}

.bd-hero-title em {
    font-style: normal;
    color: var(--bd-accent);
}

.bd-hero-description {
    max-width: 630px;
    margin: 38px 0 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .78);
}

/* HERO BUTTONS */

.bd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.bd-btn-primary,
.bd-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.bd-btn-primary {
    gap: 20px;
    color: #000000;
    background: var(--bd-accent);
}

.bd-btn-primary:hover {
    transform: translateY(-3px);
    background: #ffffff;
}

.bd-btn-secondary {
    gap: 18px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(0, 0, 0, .18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bd-btn-secondary:hover {
    transform: translateY(-3px);
    color: #000000;
    background: #ffffff;
    border-color: #ffffff;
}

/* HERO STATS */

.bd-hero-bottom {
    position: relative;
    z-index: 4;
}

.bd-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 70px;
}

.bd-hero-stat {
    min-width: 150px;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, .20);
}

.bd-hero-stat:last-child {
    border-right: 0;
}

.bd-hero-stat strong {
    display: block;
    margin-bottom: 8px;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -.04em;
}

.bd-hero-stat span {
    display: block;
    font-size: 9px;
    line-height: 1.4;
    color: rgba(255, 255, 255, .58);
    letter-spacing: .13em;
}

/* COORDINATES */

.bd-coordinate {
    position: absolute;
    top: 28px;
    right: 32px;
    z-index: 5;
    color: rgba(255, 255, 255, .75);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .12em;
}

.bd-coordinate span {
    margin: 0 7px;
    color: var(--bd-accent);
}

/* HERO BOTTOM LINE */

.bd-hero-bottom-line {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 24px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .52);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .15em;
}

.bd-hero-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .20);
}


/* =========================================================
   INTRO
========================================================= */

.bd-intro {
    background: var(--bd-off-white);
    color: var(--bd-black);
}

.bd-intro-grid {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 40px;
}

.bd-intro-number {
    padding-top: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--bd-gray-500);
}

.bd-intro-text {
    max-width: 920px;
}

.bd-intro-text p {
    max-width: 760px;
    margin: 34px 0 0;
    font-size: 18px;
    line-height: 1.75;
    color: #555550;
}

.bd-intro-text p + p {
    margin-top: 18px;
}

.bd-intro-text .bd-link {
    margin-top: 40px;
}


/* =========================================================
   SERVICES
========================================================= */

.bd-services {
    background: #ffffff;
    color: var(--bd-black);
}

.bd-services-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
}

.bd-services-header > p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--bd-gray-500);
}

.bd-service-list {
    border-top: 1px solid var(--bd-border);
}

.bd-service {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) 80px;
    align-items: center;
    gap: 30px;
    min-height: 150px;
    padding: 28px 0;
    border-bottom: 1px solid var(--bd-border);
    color: inherit;
    text-decoration: none;
    transition: padding-left .3s ease, background .3s ease;
}

.bd-service:hover {
    padding-left: 18px;
}

.bd-service-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--bd-gray-500);
}

.bd-service-content h3 {
    margin: 0 0 12px;
    font-size: clamp(25px, 3vw, 42px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -.045em;
}

.bd-service-content p {
    max-width: 600px;
    margin: 0;
    color: var(--bd-gray-500);
    font-size: 14px;
    line-height: 1.65;
}

.bd-service-arrow {
    justify-self: end;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bd-border);
    font-size: 20px;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.bd-service:hover .bd-service-arrow {
    color: #000000;
    background: var(--bd-accent);
    border-color: var(--bd-accent);
    transform: rotate(45deg);
}


/* =========================================================
   CAPABILITIES
========================================================= */

.bd-capabilities {
    background: var(--bd-black);
    color: #ffffff;
}

.bd-capabilities-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 100px;
    align-items: center;
}

.bd-capabilities-title {
    margin: 0;
    font-size: clamp(50px, 6vw, 92px);
    line-height: .9;
    font-weight: 500;
    letter-spacing: -.06em;
}

.bd-capabilities-title span {
    color: var(--bd-accent);
}

.bd-capabilities-description {
    max-width: 570px;
    margin: 36px 0 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .60);
}

.bd-capability-list {
    margin-top: 55px;
    border-top: 1px solid var(--bd-border-light);
}

.bd-capability-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid var(--bd-border-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .02em;
}

.bd-capability-item span {
    width: 30px;
    color: rgba(255, 255, 255, .35);
    font-size: 9px;
    letter-spacing: .12em;
}

/* SURVEY VISUAL */

.bd-survey-visual {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bd-border-light);
    overflow: hidden;
}

.bd-survey-visual::before {
    content: "";
    position: absolute;
    inset: 25px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.bd-survey-label {
    position: absolute;
    top: 22px;
    left: 24px;
    z-index: 2;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(255, 255, 255, .45);
}

.bd-survey-svg {
    width: 88%;
    height: auto;
    overflow: visible;
}

.survey-land {
    fill: rgba(201, 255, 69, .08);
    stroke: var(--bd-accent);
    stroke-width: 2;
}

.survey-line {
    stroke: rgba(255, 255, 255, .35);
    stroke-width: 1;
    stroke-dasharray: 6 7;
}

.survey-north {
    stroke: var(--bd-accent);
    stroke-width: 2;
}

.survey-north-arrow {
    fill: var(--bd-accent);
}

.bd-survey-svg circle {
    fill: var(--bd-accent);
}

.bd-survey-svg text {
    fill: rgba(255, 255, 255, .70);
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: .08em;
}

.bd-survey-svg .survey-north-text {
    fill: var(--bd-accent);
    font-weight: 700;
}


/* =========================================================
   PROCESS
========================================================= */

.bd-process {
    background: var(--bd-off-white);
    color: var(--bd-black);
}

.bd-process-grid {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
    gap: 100px;
}

.bd-process-intro p {
    max-width: 500px;
    margin-top: 35px;
    color: var(--bd-gray-500);
    font-size: 15px;
    line-height: 1.75;
}

.bd-process-list {
    border-top: 1px solid var(--bd-border);
}

.bd-process-item {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 25px;
    padding: 34px 0;
    border-bottom: 1px solid var(--bd-border);
}

.bd-process-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--bd-gray-500);
}

.bd-process-item h3 {
    margin: 0 0 12px;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -.03em;
}

.bd-process-item p {
    max-width: 550px;
    margin: 0;
    color: var(--bd-gray-500);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT
========================================================= */

.bd-contact {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--bd-accent);
    color: #000000;
}

.bd-contact::after {
    content: "BD";
    position: absolute;
    right: -30px;
    bottom: -100px;
    font-size: 360px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.08em;
    opacity: .07;
    pointer-events: none;
}

.bd-contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 80px;
    align-items: center;
}

.bd-contact h2 {
    margin: 0;
    font-size: clamp(52px, 7vw, 100px);
    line-height: .88;
    font-weight: 500;
    letter-spacing: -.065em;
}

.bd-contact p {
    max-width: 560px;
    margin: 30px 0 0;
    font-size: 16px;
    line-height: 1.7;
}

.bd-contact-button {
    width: 190px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, .30);
    border-radius: 50%;
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.bd-contact-button:hover {
    color: #ffffff;
    background: #000000;
    transform: rotate(-8deg);
}


/* =========================================================
   NEWS
========================================================= */

.bd-news {
    background: #ffffff;
    color: var(--bd-black);
}

.bd-news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 70px;
}

.bd-news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 70px;
    align-items: start;
}

.bd-featured-post {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    border-top: 1px solid var(--bd-border);
    border-bottom: 1px solid var(--bd-border);
    color: inherit;
    text-decoration: none;
}

.bd-featured-image {
    min-height: 450px;
    display: block;
    overflow: hidden;
    background: var(--bd-gray-100);
}

.bd-featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.bd-featured-post:hover .bd-featured-image img {
    transform: scale(1.04);
}

.bd-featured-info {
    padding: 48px 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bd-featured-tag {
    margin-bottom: 25px;
    padding: 7px 10px;
    background: var(--bd-black);
    color: #ffffff;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;
}

.bd-featured-info h3 {
    margin: 0;
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.045em;
}

.bd-featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 25px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bd-gray-500);
}

/* POST GRID */

.bd-post-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.bd-news-card {
    border: 1px solid var(--bd-border);
    background: #ffffff;
    transition: transform .3s ease, box-shadow .3s ease;
}

.bd-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
}

.bd-news-card-image {
    display: block;
    height: 230px;
    overflow: hidden;
    background: var(--bd-gray-100);
}

.bd-news-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.bd-news-card:hover .bd-news-card-image img {
    transform: scale(1.05);
}

.bd-news-card-body {
    padding: 25px;
}

.bd-news-card-date {
    margin-bottom: 18px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bd-gray-500);
}

.bd-news-card h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -.035em;
}

.bd-news-card h3 a {
    color: inherit;
    text-decoration: none;
}

.bd-news-card h3 a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.bd-news-card p {
    margin: 17px 0 0;
    color: var(--bd-gray-500);
    font-size: 13px;
    line-height: 1.65;
}

.bd-news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    color: inherit;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.bd-news-card-link:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* LOAD MORE */

.bd-load-more {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    min-height: 52px;
    padding: 0 20px;
    margin-top: 50px;
    border: 1px solid var(--bd-black);
    background: #ffffff;
    color: var(--bd-black);
    cursor: pointer;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background .25s ease, color .25s ease;
}

.bd-load-more:hover {
    color: #ffffff;
    background: var(--bd-black);
}

.bd-load-more:disabled {
    opacity: .55;
    cursor: default;
}


/* =========================================================
   NEWS SIDEBAR
========================================================= */

.bd-news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bd-news-sidebar-card {
    padding: 38px 32px;
    background: var(--bd-black);
    color: #ffffff;
}

.bd-sidebar-label {
    margin-bottom: 35px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .50);
}

.bd-news-sidebar-card h3 {
    margin: 0;
    font-size: 32px;
    line-height: .98;
    font-weight: 500;
    letter-spacing: -.045em;
}

.bd-news-sidebar-card p {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .60);
    font-size: 13px;
    line-height: 1.7;
}

.bd-sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    padding-bottom: 8px;
}

.bd-sidebar-link:hover {
    color: var(--bd-accent);
}

.bd-follow-card {
    background: var(--bd-off-white);
    color: var(--bd-black);
}

.bd-follow-card .bd-sidebar-label,
.bd-follow-card p {
    color: var(--bd-gray-500);
}

.bd-social-links {
    display: flex;
    flex-direction: column;
    margin-top: 28px;
    border-top: 1px solid var(--bd-border);
}

.bd-social-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--bd-border);
    color: inherit;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bd-social-links a:hover {
    color: var(--bd-accent-dark);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .bd-section {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .bd-capabilities-grid,
    .bd-process-grid {
        gap: 60px;
    }

    .bd-news-layout {
        gap: 45px;
    }

}

@media (max-width: 991px) {

    .container {
        width: min(calc(100% - 42px), var(--bd-container));
    }

    .bd-hero {
        min-height: 850px;
    }

    .bd-hero-content {
        padding-top: 170px;
        padding-bottom: 90px;
    }

    .bd-hero-title {
        font-size: clamp(55px, 10vw, 90px);
    }

    .bd-services-header {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 55px;
    }

    .bd-capabilities-grid,
    .bd-process-grid {
        grid-template-columns: 1fr;
    }

    .bd-capabilities-grid {
        gap: 70px;
    }

    .bd-survey-visual {
        min-height: 500px;
    }

    .bd-news-layout {
        grid-template-columns: 1fr;
    }

    .bd-news-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bd-contact-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767px) {

    .container {
        width: calc(100% - 30px);
    }

    .bd-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /* HERO */

    .bd-hero {
        min-height: 800px;
        align-items: flex-end;
        background-position: 58% center;
    }

    .bd-hero-overlay {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .55)),
            linear-gradient(180deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .85));
    }

    .bd-hero-grid {
        background-size: 55px 55px;
    }

    .bd-coordinate {
        top: 20px;
        right: 15px;
        max-width: 240px;
        text-align: right;
        line-height: 1.8;
    }

    .bd-hero-content {
        padding-top: 140px;
        padding-bottom: 70px;
    }

    .bd-hero-kicker {
        margin-bottom: 22px;
        font-size: 8px;
    }

    .bd-hero-title {
        font-size: clamp(50px, 14vw, 75px);
        line-height: .89;
    }

    .bd-hero-description {
        margin-top: 28px;
        font-size: 15px;
        line-height: 1.65;
    }

    .bd-hero-actions {
        margin-top: 30px;
        align-items: stretch;
        flex-direction: column;
    }

    .bd-btn-primary,
    .bd-btn-secondary {
        width: 100%;
    }

    .bd-hero-stats {
        margin-top: 45px;
    }

    .bd-hero-stat {
        min-width: 33.333%;
        padding-right: 12px;
        margin-right: 12px;
    }

    .bd-hero-stat strong {
        font-size: 22px;
    }

    .bd-hero-stat span {
        font-size: 7px;
    }

    /* INTRO */

    .bd-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bd-intro-number {
        padding: 0;
    }

    .bd-intro-text p {
        font-size: 16px;
    }

    /* SERVICES */

    .bd-service {
        grid-template-columns: 45px minmax(0, 1fr) 45px;
        gap: 15px;
        min-height: 130px;
    }

    .bd-service-content h3 {
        font-size: 25px;
    }

    .bd-service-content p {
        font-size: 12px;
    }

    .bd-service-arrow {
        width: 38px;
        height: 38px;
    }

    /* CAPABILITIES */

    .bd-capabilities-title {
        font-size: 60px;
    }

    .bd-survey-visual {
        min-height: 390px;
    }

    /* CONTACT */

    .bd-contact {
        padding: 85px 0;
    }

    .bd-contact-button {
        width: 150px;
        height: 150px;
    }

    /* NEWS */

    .bd-news-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 45px;
    }

    .bd-featured-post {
        grid-template-columns: 1fr;
    }

    .bd-featured-image {
        min-height: 300px;
    }

    .bd-featured-info {
        padding: 30px 25px;
    }

    .bd-post-grid {
        grid-template-columns: 1fr;
    }

    .bd-news-sidebar {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 575px) {

    .bd-section-heading {
        font-size: 45px;
    }

    .bd-hero {
        min-height: 770px;
    }

    .bd-hero-title {
        font-size: 49px;
    }

    .bd-hero-stat {
        min-width: 31%;
        padding-right: 8px;
        margin-right: 8px;
    }

    .bd-hero-stat strong {
        font-size: 19px;
    }

    .bd-hero-stat span {
        font-size: 6px;
        letter-spacing: .08em;
    }

    .bd-service {
        grid-template-columns: 32px minmax(0, 1fr) 35px;
        gap: 10px;
        padding: 24px 0;
    }

    .bd-service-number {
        font-size: 8px;
    }

    .bd-service-content h3 {
        font-size: 22px;
    }

    .bd-service-content p {
        display: none;
    }

    .bd-service-arrow {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .bd-capabilities-title {
        font-size: 52px;
    }

    .bd-survey-visual {
        min-height: 330px;
    }

    .bd-survey-svg {
        width: 100%;
    }

    .bd-process-item {
        grid-template-columns: 45px minmax(0, 1fr);
        gap: 15px;
    }

    .bd-process-item h3 {
        font-size: 22px;
    }

    .bd-contact h2 {
        font-size: 55px;
    }

    .bd-featured-image {
        min-height: 240px;
    }

    .bd-featured-info h3 {
        font-size: 29px;
    }

    .bd-news-card-image {
        height: 200px;
    }

}


/* =========================================================
   ACCESSIBILITY / MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

}