:root {
    --builza-base: #009739;
    --builza-base-rgb: 0, 151, 57;
    --builza-black: #0b1714;
    --builza-black-rgb: 11, 23, 20;
    --builza-gray: #52615d;
    --builza-primary: #f3f7f4;
    --rdh-green: #009739;
    --rdh-deep: #061d15;
    --rdh-yellow: #ffe54d;
    --rdh-steel: #34515d;
    --rdh-muted: #f5f8f6;
    --rdh-line: #dce7e2;
}

body {
    background: #ffffff;
    color: var(--rdh-deep);
}

a {
    color: inherit;
}

.rdh-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.rdh-topbar {
    background: var(--rdh-deep);
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.rdh-topbar__inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rdh-topbar a,
.rdh-topbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rdh-topbar i {
    color: var(--rdh-yellow);
}

.rdh-nav {
    min-height: 86px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(6, 29, 21, 0.08);
    position: sticky;
    top: 0;
    z-index: 99;
}

.rdh-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--rdh-deep);
    text-decoration: none;
}

.rdh-brand__mark {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rdh-green);
    color: var(--rdh-yellow);
    font-family: var(--builza-font-two);
    font-size: 22px;
    font-weight: 800;
    border-radius: 8px;
    box-shadow: inset 0 0 0 2px rgba(255, 229, 77, 0.22);
}

.rdh-brand strong,
.rdh-brand small {
    display: block;
    line-height: 1.1;
}

.rdh-brand strong {
    font-family: var(--builza-font-two);
    font-size: 22px;
}

.rdh-brand small {
    margin-top: 4px;
    color: var(--rdh-steel);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.rdh-nav__links {
    align-items: center;
    gap: 2px;
}

.rdh-nav .nav-link {
    color: var(--rdh-deep);
    font-weight: 700;
    padding: 12px 16px !important;
}

.rdh-nav .nav-link.active,
.rdh-nav .nav-link:hover {
    color: var(--rdh-green);
}

.rdh-nav__cta,
.rdh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 800;
    text-decoration: none;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.rdh-nav__cta {
    margin-left: 18px;
    background: var(--rdh-green);
    color: #ffffff;
}

.rdh-btn--primary {
    background: var(--rdh-green);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 151, 57, 0.2);
}

.rdh-btn--light {
    background: rgba(255, 255, 255, 0.92);
    color: var(--rdh-deep);
}

.rdh-nav__cta:hover,
.rdh-btn:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.rdh-btn--light:hover {
    background: var(--rdh-yellow);
    color: var(--rdh-deep);
}

.rdh-nav__toggle {
    border: 1px solid var(--rdh-line);
    border-radius: 8px;
    color: var(--rdh-deep);
}

.rdh-hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.rdh-hero__overlay,
.rdh-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 29, 21, 0.92), rgba(6, 29, 21, 0.55), rgba(6, 29, 21, 0.16));
}

.rdh-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 620px) minmax(360px, 520px);
    gap: 48px;
    align-items: center;
    padding: 90px 0;
}

.rdh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--rdh-green);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 13px;
}

.rdh-hero .rdh-eyebrow,
.rdh-panel--dark .rdh-eyebrow,
.rdh-panel--image .rdh-eyebrow,
.rdh-cta .rdh-eyebrow,
.rdh-page-hero .rdh-eyebrow {
    color: var(--rdh-yellow);
}

.rdh-eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    background: currentColor;
    border-radius: 8px;
}

.rdh-hero h1 {
    color: #ffffff;
    font-size: clamp(58px, 8vw, 116px);
    line-height: 0.92;
    margin: 18px 0 22px;
}

.rdh-hero p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
    line-height: 1.7;
}

.rdh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.rdh-hero__showcase {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: end;
    padding: 30px 0 0 30px;
}

.rdh-hero__showcase::before {
    content: "";
    position: absolute;
    inset: 0 50px 90px 0;
    border: 2px solid rgba(255, 229, 77, 0.55);
    border-radius: 8px;
}

.rdh-hero__showcase::after {
    content: "";
    position: absolute;
    top: 34px;
    right: 12px;
    width: 84px;
    height: 84px;
    background: var(--rdh-yellow);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    opacity: 0.95;
}

.rdh-hero__showcase > img {
    width: 88%;
    height: 410px;
    object-fit: cover;
    border-radius: 8px;
    border: 10px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.rdh-hero__showcase-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(260px, 72%);
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--rdh-deep);
    border-radius: 8px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.rdh-hero__showcase-card i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rdh-green);
    color: #ffffff;
    border-radius: 8px;
}

.rdh-hero__showcase-card--top {
    top: 88px;
    left: 0;
}

.rdh-hero__showcase-card--bottom {
    right: 0;
    bottom: 138px;
}

.rdh-hero__proof {
    position: absolute;
    left: 0;
    right: 12px;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.rdh-hero__proof div {
    min-height: 112px;
    border-left: 5px solid var(--rdh-yellow);
    background: rgba(14, 18, 29, 0.82);
    backdrop-filter: blur(10px);
    padding: 18px 16px;
    border-radius: 8px;
}

.rdh-hero__proof strong,
.rdh-hero__proof span {
    display: block;
}

.rdh-hero__proof strong {
    color: #ffffff;
    font-family: var(--builza-font-two);
    font-size: 38px;
    line-height: 1;
}

.rdh-hero__proof span {
    color: rgba(255, 255, 255, 0.82);
    margin-top: 8px;
    font-weight: 700;
}

.rdh-strip {
    padding: 18px 0 0;
    background: #ffffff;
}

.rdh-strip__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 18px;
    transform: translateY(-48px);
    margin-bottom: -48px;
}

.rdh-strip__grid img,
.rdh-rounded-image,
.rdh-service-card img,
.rdh-service-detail img,
.rdh-gallery img {
    width: 100%;
    object-fit: cover;
}

.rdh-strip__grid img {
    height: 230px;
    border: 8px solid #ffffff;
    box-shadow: 0 16px 40px rgba(6, 29, 21, 0.14);
}

.rdh-section {
    padding: 100px 0;
}

.rdh-section--muted {
    background: var(--rdh-muted);
}

.rdh-section h2,
.rdh-page-hero h1,
.rdh-cta h2 {
    color: var(--rdh-deep);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.06;
    margin: 14px 0 20px;
}

.rdh-section p {
    color: var(--rdh-gray);
    font-size: 17px;
    line-height: 1.8;
}

.rdh-checks {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.rdh-checks span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--rdh-deep);
    font-weight: 800;
}

.rdh-checks i,
.rdh-service-detail li i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rdh-green);
    color: #ffffff;
    font-size: 12px;
}

.rdh-image-stack {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 18px;
    align-items: end;
}

.rdh-image-stack img {
    width: 100%;
    min-width: 0;
    object-fit: cover;
}

.rdh-image-stack img:first-child {
    height: 460px;
}

.rdh-image-stack img:last-child {
    height: 320px;
    margin-bottom: -36px;
    border: 8px solid #ffffff;
    box-shadow: 0 16px 40px rgba(6, 29, 21, 0.14);
}

.rdh-section__heading {
    max-width: 780px;
    margin-bottom: 46px;
}

.rdh-service-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--rdh-line);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
    position: relative;
}

.rdh-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(6, 29, 21, 0.12);
}

.rdh-service-card img {
    height: 210px;
}

.rdh-service-card div {
    padding: 24px;
    position: relative;
}

.rdh-service-card i,
.rdh-service-detail > div > i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(0, 151, 57, 0.1);
    color: var(--rdh-green);
    border-radius: 8px;
    font-size: 22px;
}

.rdh-service-card h3,
.rdh-project-card h3,
.rdh-footer h3 {
    color: var(--rdh-deep);
    font-size: 22px;
    line-height: 1.22;
    margin-bottom: 12px;
}

.rdh-service-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.rdh-service-card a {
    position: absolute;
    right: 22px;
    top: -28px;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rdh-green);
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 14px 24px rgba(0, 151, 57, 0.22);
}

.rdh-service-card a:hover {
    background: var(--rdh-deep);
    color: #ffffff;
}

.rdh-panel {
    height: 100%;
    padding: 42px;
    border-radius: 8px;
    border: 1px solid var(--rdh-line);
    background: #ffffff;
}

.rdh-panel--dark {
    background: var(--rdh-deep);
    border-color: var(--rdh-deep);
}

.rdh-panel--dark h2,
.rdh-panel--image h2 {
    color: #ffffff;
}

.rdh-panel--dark p,
.rdh-panel--image p {
    color: rgba(255, 255, 255, 0.78);
}

.rdh-panel--image {
    min-height: 410px;
    position: relative;
    display: flex;
    align-items: end;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.rdh-panel--image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6, 29, 21, 0.9), rgba(6, 29, 21, 0.18));
}

.rdh-panel--image > div {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.rdh-cta {
    padding: 70px 0;
    background: var(--rdh-deep);
    color: #ffffff;
}

.rdh-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.rdh-cta h2 {
    color: #ffffff;
    margin-bottom: 0;
}

.rdh-page-hero {
    min-height: 420px;
    position: relative;
    display: flex;
    align-items: end;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.rdh-page-hero__content {
    position: relative;
    z-index: 1;
    padding: 120px 0 74px;
}

.rdh-page-hero__content span {
    color: var(--rdh-yellow);
    font-weight: 900;
    text-transform: uppercase;
}

.rdh-page-hero h1 {
    color: #ffffff;
    max-width: 800px;
}

.rdh-page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
    line-height: 1.7;
}

.rdh-rounded-image {
    height: 470px;
    border-radius: 8px;
}

.rdh-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.rdh-stat {
    min-height: 170px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    background: var(--rdh-deep);
    border-bottom: 6px solid var(--rdh-yellow);
}

.rdh-stat strong {
    color: #ffffff;
    font-size: 50px;
    font-family: var(--builza-font-two);
    line-height: 1;
}

.rdh-stat span {
    color: rgba(255, 255, 255, 0.82);
    margin-top: 12px;
    font-weight: 800;
}

.rdh-service-detail {
    height: 100%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    border: 1px solid var(--rdh-line);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.rdh-service-detail img {
    height: 100%;
    min-height: 360px;
}

.rdh-service-detail > div {
    padding: 34px;
}

.rdh-service-detail h2 {
    font-size: 31px;
}

.rdh-service-detail ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
}

.rdh-service-detail li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--rdh-deep);
    font-weight: 800;
}

.rdh-market-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.rdh-market-grid span {
    min-height: 86px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: #ffffff;
    border-left: 5px solid var(--rdh-green);
    color: var(--rdh-deep);
    font-size: 20px;
    font-weight: 900;
}

.rdh-project-card {
    height: 100%;
    padding: 34px;
    border-radius: 8px;
    border: 1px solid var(--rdh-line);
    background: #ffffff;
}

.rdh-project-card span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    background: rgba(0, 151, 57, 0.1);
    color: var(--rdh-green);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.rdh-gallery {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
}

.rdh-gallery img {
    height: 360px;
}

.rdh-contact-list {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.rdh-contact-list div {
    display: flex;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--rdh-line);
    border-radius: 8px;
}

.rdh-contact-list i {
    color: var(--rdh-green);
    font-size: 22px;
    margin-top: 3px;
}

.rdh-contact-list span,
.rdh-contact-list a {
    color: var(--rdh-deep);
    font-weight: 700;
    line-height: 1.55;
}

.rdh-form {
    padding: 42px;
    background: var(--rdh-muted);
    border-radius: 8px;
    border: 1px solid var(--rdh-line);
}

.rdh-form label {
    display: block;
    color: var(--rdh-deep);
    font-weight: 900;
    margin-bottom: 8px;
}

.rdh-form input,
.rdh-form select,
.rdh-form textarea {
    width: 100%;
    min-height: 54px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid var(--rdh-line);
    border-radius: 8px;
    color: var(--rdh-deep);
    outline: none;
}

.rdh-form textarea {
    min-height: 150px;
    resize: vertical;
}

.rdh-form input:focus,
.rdh-form select:focus,
.rdh-form textarea:focus {
    border-color: var(--rdh-green);
    box-shadow: 0 0 0 4px rgba(0, 151, 57, 0.12);
}

.rdh-form small {
    display: block;
    color: #b42318;
    margin-top: 7px;
    font-weight: 700;
}

.rdh-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px !important;
    height: 1px !important;
    opacity: 0;
}

.rdh-alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 22px;
    font-weight: 800;
}

.rdh-alert--success {
    background: rgba(0, 151, 57, 0.12);
    color: #006b2c;
}

.rdh-alert--error {
    background: #fff1f0;
    color: #b42318;
}

.rdh-footer {
    background: #071512;
    color: rgba(255, 255, 255, 0.72);
    padding: 76px 0 28px;
}

.rdh-brand--footer {
    display: inline-flex;
    color: #ffffff;
    margin-bottom: 20px;
}

.rdh-brand--footer .rdh-brand__mark {
    display: inline-flex;
    color: var(--rdh-yellow);
    margin-bottom: 0;
}

.rdh-footer p {
    line-height: 1.8;
}

.rdh-footer h3 {
    color: #ffffff;
    margin-bottom: 18px;
}

.rdh-footer a,
.rdh-footer span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    margin-bottom: 10px;
}

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

.rdh-footer__bottom a {
    display: inline;
    margin-bottom: 0;
}

.rdh-footer__bottom {
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.rdh-section--tight {
    padding: 56px 0;
}

/* Featured project */
.rdh-featured__collage {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: repeat(2, 190px);
    gap: 16px;
}

.rdh-featured__collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(6, 29, 21, 0.14);
}

.rdh-featured__collage img:first-child {
    grid-row: span 2;
    height: 396px;
}

.rdh-featured .rdh-btn {
    margin-top: 30px;
}

/* Video */
.rdh-video-frame {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(6, 29, 21, 0.18);
    background: #000;
}

.rdh-video-frame video {
    display: block;
    width: 100%;
    max-height: 640px;
    background: #000;
}

/* Filter bar */
.rdh-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -18px 0 40px;
}

.rdh-filter-btn {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--rdh-line);
    background: #ffffff;
    color: var(--rdh-deep);
    font-weight: 800;
    font-size: 14px;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.rdh-filter-btn:hover {
    border-color: var(--rdh-green);
    color: var(--rdh-green);
}

.rdh-filter-btn.is-active {
    background: var(--rdh-green);
    border-color: var(--rdh-green);
    color: #ffffff;
}

/* Project tiles */
.rdh-project-tile {
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--rdh-line);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.rdh-project-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(6, 29, 21, 0.14);
}

.rdh-project-tile__media {
    position: relative;
    display: block;
    width: 100%;
    height: 240px;
    padding: 0;
    border: 0;
    overflow: hidden;
    cursor: pointer;
}

.rdh-project-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.rdh-project-tile:hover .rdh-project-tile__media img {
    transform: scale(1.08);
}

.rdh-project-tile__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(180deg, rgba(6, 29, 21, 0.1), rgba(6, 29, 21, 0.78));
    color: #ffffff;
    font-weight: 800;
    opacity: 0;
    transition: opacity 220ms ease;
}

.rdh-project-tile:hover .rdh-project-tile__overlay {
    opacity: 1;
}

.rdh-project-tile__overlay i {
    font-size: 22px;
    color: var(--rdh-yellow);
}

.rdh-project-tile__overlay em {
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
}

.rdh-project-tile__body {
    padding: 26px;
}

.rdh-project-tile__body span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    background: rgba(0, 151, 57, 0.1);
    color: var(--rdh-green);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.rdh-project-tile__body h3 {
    color: var(--rdh-deep);
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.rdh-project-tile__body p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Gallery modal */
.rdh-gallery-modal .modal-content {
    background: #0b1714;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
}

.rdh-gallery-modal .modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.rdh-gallery-modal .modal-title {
    color: #ffffff;
    font-weight: 800;
}

.rdh-gallery-modal .btn-close {
    filter: invert(1) grayscale(1) brightness(2);
}

.rdh-gallery-modal .modal-body {
    padding: 0;
}

.rdh-gallery-modal .carousel-item img,
.rdh-gallery-modal .carousel-item video,
.rdh-gallery-modal__single {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    background: #000000;
}

.rdh-gallery-modal .carousel-control-prev,
.rdh-gallery-modal .carousel-control-next {
    width: 64px;
}

@media (max-width: 991px) {
    .rdh-featured__collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 150px);
    }

    .rdh-featured__collage img:first-child {
        height: 316px;
    }

    .rdh-video-frame video {
        max-height: 420px;
    }

    .rdh-filter-bar {
        margin-top: 0;
    }

    .rdh-topbar__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

    .rdh-nav__cta {
        margin: 12px 0 0;
    }

    .rdh-hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 72px 0;
    }

    .rdh-hero h1 {
        font-size: 62px;
    }

    .rdh-strip__grid,
    .rdh-gallery {
        grid-template-columns: 1fr;
        transform: none;
        margin-bottom: 0;
    }

    .rdh-strip {
        padding: 24px 0 0;
    }

    .rdh-image-stack,
    .rdh-stat-grid,
    .rdh-service-detail,
    .rdh-market-grid {
        grid-template-columns: 1fr;
    }

    .rdh-image-stack img:first-child,
    .rdh-image-stack img:last-child,
    .rdh-rounded-image,
    .rdh-service-detail img,
    .rdh-gallery img {
        height: 320px;
        min-height: 0;
        margin-bottom: 0;
    }

    .rdh-section {
        padding: 72px 0;
    }

    .rdh-section--tight {
        padding: 40px 0;
    }

    .rdh-featured__collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .rdh-featured__collage img:first-child,
    .rdh-featured__collage img:nth-child(2),
    .rdh-featured__collage img:nth-child(3) {
        height: 240px;
        grid-row: auto;
    }

    .rdh-project-tile__media {
        height: 210px;
    }

    .rdh-cta__inner,
    .rdh-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .rdh-shell {
        width: min(100% - 24px, 1180px);
    }

    .rdh-brand__mark {
        width: 50px;
        height: 50px;
        font-size: 19px;
    }

    .rdh-brand strong {
        font-size: 18px;
    }

    .rdh-topbar__inner {
        gap: 8px;
        min-height: 84px;
    }

    .rdh-topbar__address {
        display: none !important;
    }

    .rdh-nav {
        min-height: 76px;
    }

    .rdh-hero {
        min-height: auto;
        background-position: 58% center;
    }

    .rdh-hero__inner {
        gap: 22px;
        padding: 46px 0 40px;
    }

    .rdh-hero h1 {
        font-size: 44px;
        margin-bottom: 16px;
    }

    .rdh-hero p,
    .rdh-page-hero p {
        font-size: 16px;
        line-height: 1.58;
    }

    .rdh-hero__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .rdh-btn,
    .rdh-nav__cta {
        min-height: 50px;
        padding: 0 12px;
        font-size: 14px;
    }

    .rdh-hero__showcase {
        min-height: 96px;
        display: block;
        padding: 0;
    }

    .rdh-hero__showcase::before,
    .rdh-hero__showcase::after,
    .rdh-hero__showcase > img,
    .rdh-hero__showcase-card {
        display: none;
    }

    .rdh-hero__proof {
        position: static;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .rdh-hero__proof div {
        min-height: 86px;
        padding: 12px 10px;
        border-left: 0;
        border-top: 4px solid var(--rdh-yellow);
    }

    .rdh-hero__proof strong {
        font-size: 28px;
    }

    .rdh-hero__proof span {
        font-size: 11px;
        line-height: 1.25;
        margin-top: 6px;
    }

    .rdh-panel,
    .rdh-form,
    .rdh-service-detail > div,
    .rdh-project-card {
        padding: 26px;
    }

    .rdh-section h2,
    .rdh-page-hero h1,
    .rdh-cta h2 {
        font-size: 34px;
    }
}
