/* Brothers E&C static site */
:root {
    --rd-navy: #1c1917;
    --rd-navy-rgb: 28, 25, 23;
    --rd-navy-line: #332b27;
    --rd-gold: #b23a2e;
    --rd-gold-dark: #7a2b20;
    --rd-gold-hover: #c6483a;
    --rd-gold-rgb: 178, 58, 46;
    --rd-gold-tint: #f3dcd6;
    --rd-paper: #fff;
    --rd-paper-dim: #f4f5f8;
    --rd-text: #1b2136;
    --rd-text-sub: #5b6178;
    --rd-on-dark: #d8d2cc;
    --rd-on-dark-soft: #c7beb8;
    --rd-on-dark-dim: #8c817b;
    --rd-line: #e5e6ec;
    --rd-deep: 16, 27, 51;
    --rd-display: "Archivo", Arial, sans-serif;
    --rd-body: "IBM Plex Sans", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: var(--rd-body);
    font-size: 16px;
    color: var(--rd-text);
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
    margin: 0;
}

ul, ol {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img, picture {
    display: block;
    max-width: 100%;
    height: auto;
}

button, input, select, textarea {
    font: inherit;
}

iframe {
    display: block;
    width: 100%;
    border: 0;
}

.site {
    min-height: 100vh;
}

.site-content {
    padding: 0;
}

.rd-hero h1,
.rd-section h2, .rd-section h3, .rd-section h4,
.rd-cta-banner h2,
.rd-logo-text {
    font-family: var(--rd-display);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ---------------------------------------------------------------- layout */
.rd-section { padding: 100px 0; }
@media (max-width: 860px) { .rd-section { padding: 64px 0; } }

.rd-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

.rd-bg-paper { background: var(--rd-paper); }
.rd-bg-dim { background: var(--rd-paper-dim); }
.rd-bg-navy { background: var(--rd-navy); color: #fff; }

.rd-accent-bar {
    width: 56px;
    height: 4px;
    background: var(--rd-gold);
    border-radius: 2px;
    margin-top: 14px;
}
.rd-tag-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rd-gold-dark);
}
.rd-bg-navy .rd-tag-label { color: var(--rd-gold); }

.rd-section-head {
    max-width: 640px;
    margin-bottom: 56px;
}
.rd-section-head h2 {
    font-size: 32px;
    margin-top: 8px;
    color: var(--rd-text);
}
.rd-section-head p {
    margin-top: 16px;
    color: var(--rd-text-sub);
    font-size: 16px;
}
.rd-bg-navy .rd-section-head h2 { color: #fff; }
.rd-bg-navy .rd-section-head p { color: var(--rd-on-dark-soft); max-width: 600px; }
@media (max-width: 860px) { .rd-section-head h2 { font-size: 26px; } }

/* ---------------------------------------------------------------- buttons */
.rd-btn-gold, .rd-btn-outline {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    padding: 15px 28px;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.2s;
}
.rd-btn-gold {
    background: var(--rd-gold);
    color: #fff !important;
}
.rd-btn-gold:hover { background: var(--rd-gold-hover); }
.rd-btn-outline {
    border: 1px solid #57504B;
    color: #fff !important;
}
.rd-btn-outline:hover { border-color: var(--rd-gold); color: var(--rd-gold) !important; }
.rd-btn-outline.dark {
    border-color: var(--rd-line);
    color: var(--rd-text) !important;
}
.rd-btn-outline.dark:hover { border-color: var(--rd-gold); color: var(--rd-gold) !important; }

/* ---------------------------------------------------------------- header */
.site-header {
    height: 100px;
    padding: 0 36px;
    background-color: var(--rd-navy);
    position: sticky;
    top: 0;
    z-index: 30;
}

.site-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 28px;
    align-items: center;
    height: 100%;
    padding: 6px 0;
}

.site-header-brand {
    line-height: 1;
}

.site-header-brand-wrapper {
    display: flex;
    align-items: center;
}

.site-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rd-logo-badge {
    width: 26px;
    height: 26px;
    background: var(--rd-gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--rd-display);
    font-size: 13px;
    font-weight: 800;
    flex: 0 0 auto;
}
.rd-logo-text {
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
}
@media (max-width: 359px) { .rd-logo-text { display: none; } }

.site-nav {
    display: flex;
    align-items: center;
    margin-right: 64px;
    margin-left: 16px;
}

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

.site-nav .nav li a {
    color: var(--rd-on-dark) !important;
    font-family: var(--rd-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    transition: color 0.2s;
}
.site-nav .nav li a:hover { color: #fff !important; opacity: 1 !important; }

.site-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.rd-nav-cta {
    background: var(--rd-gold);
    color: #fff !important;
    font-weight: 700;
    font-size: 13px;
    padding: 11px 22px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s;
}
.rd-nav-cta:hover { background: var(--rd-gold-hover); }

.site-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #fff;
    cursor: pointer;
    background: transparent;
    border: 0;
}

@media (max-width: 767px) {
    .site-header {
        height: 64px;
        padding: 0 20px;
    }

    .site-header-inner {
        display: block;
        padding: 0;
    }

    .site-header-brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;
    }

    .site-menu-toggle {
        display: flex;
    }

    .site-nav,
    .site-header-actions {
        display: none;
    }

    .site-menu-open {
        overflow: hidden;
    }

    .site-menu-open .site-header {
        position: fixed;
        inset: 0;
        z-index: 100;
        height: 100vh;
        height: 100dvh;
        overflow-y: auto;
    }

    .site-menu-open .site-nav {
        display: flex;
        justify-content: center;
        padding: 36px 0 24px;
        margin: 0;
    }

    .site-menu-open .site-nav .nav {
        flex-direction: column;
        gap: 20px;
    }

    .site-menu-open .site-nav .nav a {
        color: #fff !important;
        font-size: 26px;
    }

    .site-menu-open .site-header-actions {
        display: flex;
        justify-content: center;
        padding-bottom: 36px;
    }
}

/* ---------------------------------------------------------------- hero */
.rd-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-bottom: 72px; /* leaves room for the marquee strip pinned at the bottom */
    background-color: var(--rd-navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.rd-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 72px 32px 0;
    width: 100%;
}
.rd-hero-eyebrow {
    display: block;
    color: var(--rd-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.rd-hero h1 {
    font-size: 48px;
    line-height: 1.12;
    color: #fff;
    max-width: 680px;
    margin-top: 14px;
}
.rd-hero p {
    margin-top: 20px;
    font-size: 16px;
    color: var(--rd-on-dark);
    max-width: 520px;
}
.rd-hero-ctas {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
@media (max-width: 860px) { .rd-hero h1 { font-size: 32px; } }

/* marquee strip pinned to the bottom of the hero */
.rd-marquee-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: var(--rd-navy);
    border-top: 1px solid var(--rd-navy-line);
    overflow: hidden;
    padding: 18px 0;
}
.rd-marquee {
    display: flex;
    width: max-content;
    animation: rd-scroll 24s linear infinite;
}
.rd-marquee span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--rd-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--rd-on-dark-dim);
    padding: 0 28px;
    white-space: nowrap;
}
.rd-marquee span::after {
    content: '\2022';
    color: var(--rd-gold);
    margin-left: 28px;
}
@keyframes rd-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .rd-marquee { animation: none; }
}

/* ---------------------------------------------------------------- services */
.rd-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 44px 0;
    border-bottom: 1px solid var(--rd-line);
}
.rd-service-row:first-of-type { border-top: 1px solid var(--rd-line); }
/* alternate sides: rows live in .rd-service-rows so nth-of-type isn't thrown off
   by the section header sitting alongside them */
.rd-service-rows .rd-service-row:nth-of-type(even) .rd-service-text { order: 2; }

.rd-s-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--rd-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.rd-s-icon svg { width: 22px; height: 22px; stroke: var(--rd-gold); fill: none; }
.rd-service-text h3 { font-size: 20px; margin-bottom: 10px; color: var(--rd-text); }
.rd-service-text p { color: var(--rd-text-sub); font-size: 15px; }

.rd-service-img {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}
.rd-service-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}
.rd-service-stat {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--rd-navy);
    color: #fff;
    padding: 16px 22px;
    border-radius: 0 6px 0 0;
}
.rd-service-stat .n {
    font-family: var(--rd-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--rd-gold);
}
.rd-service-stat .l { font-size: 12px; color: var(--rd-on-dark); margin-top: 2px; }

@media (max-width: 860px) {
    .rd-service-row { grid-template-columns: 1fr; }
    .rd-service-rows .rd-service-row:nth-of-type(even) .rd-service-text { order: 0; }
}

/* ---------------------------------------------------------------- about */
.rd-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.rd-split-img {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}
.rd-split-img img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}
.rd-split-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--rd-navy);
    color: #fff;
    padding: 18px 24px;
    border-radius: 0 6px 0 0;
}
.rd-split-badge .n {
    font-family: var(--rd-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--rd-gold);
}
.rd-split-badge .l { font-size: 12px; color: var(--rd-on-dark); margin-top: 2px; }
.rd-split-text h2 { font-size: 32px; margin-top: 8px; color: var(--rd-text); }
.rd-split-text p {
    margin-top: 16px;
    color: var(--rd-text-sub);
    font-size: 15.5px;
}
@media (max-width: 860px) {
    .rd-split { grid-template-columns: 1fr; gap: 32px; }
    .rd-split-text h2 { font-size: 26px; }
}

/* panels (facts / credentials / equipment specs) */
.rd-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 28px;
}
.rd-panel {
    background: var(--rd-paper-dim);
    border-left: 3px solid var(--rd-gold);
    border-radius: 0 6px 6px 0;
    padding: 20px 22px;
}
.rd-bg-dim .rd-panel { background: #fff; border-left-color: var(--rd-gold); }
.rd-panel h4 {
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--rd-text);
}
.rd-panel p { font-size: 13.5px; color: var(--rd-text-sub); }
@media (max-width: 860px) { .rd-panel-grid { grid-template-columns: 1fr; } }

/* inline fact list */
.rd-facts {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.rd-facts li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--rd-text);
}
.rd-facts li svg { width: 16px; height: 16px; stroke: var(--rd-gold); fill: none; flex: 0 0 auto; }

/* ---------------------------------------------------------------- process */
.rd-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 8px;
}
.rd-process-num {
    font-family: var(--rd-display);
    font-weight: 800;
    font-size: 44px;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--rd-gold-dark);
    line-height: 1;
    margin-bottom: 18px;
}
.rd-process-step h3 { font-size: 18px; margin-bottom: 10px; color: var(--rd-text); }
.rd-process-step p { color: var(--rd-text-sub); font-size: 14.5px; margin-bottom: 14px; }
.rd-process-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.rd-process-tags span {
    font-size: 12px;
    font-weight: 600;
    background: #fff;
    border: 1px solid var(--rd-line);
    padding: 6px 12px;
    border-radius: 20px;
    color: var(--rd-text-sub);
}
@media (max-width: 860px) { .rd-process-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- projects */
.rd-proj-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.rd-proj-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
}
.rd-proj-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rd-proj-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(var(--rd-deep), 0.15) 0%,
        rgba(var(--rd-deep), 0.55) 50%,
        rgba(var(--rd-deep), 0.97) 100%);
}
.rd-proj-content {
    position: relative;
    z-index: 2;
    padding: 26px;
}
.rd-proj-content .rd-p-loc {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #E0705F; /* lifted off the gold so it stays legible over photo mid-tones */
    margin-bottom: 6px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.rd-proj-content h4 {
    font-size: 19px;
    color: #fff;
    margin-bottom: 6px;
    font-family: var(--rd-display);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.rd-proj-content p { font-size: 13.5px; color: var(--rd-on-dark); text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); }
@media (max-width: 860px) { .rd-proj-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- values / team figures */
.rd-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.rd-value-card {
    padding: 28px;
    border: 1px solid var(--rd-line);
    border-radius: 8px;
    background: #fff;
}
.rd-value-card .rd-v-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--rd-gold-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.rd-value-card .rd-v-icon svg { width: 19px; height: 19px; stroke: var(--rd-gold-dark); fill: none; }
.rd-value-card .rd-v-num {
    font-family: var(--rd-display);
    font-weight: 800;
    font-size: 32px;
    color: var(--rd-gold-dark);
    line-height: 1;
    margin-bottom: 10px;
}
.rd-value-card h4 { font-size: 16px; margin-bottom: 8px; color: var(--rd-text); }
.rd-value-card p { font-size: 13.5px; color: var(--rd-text-sub); }
@media (max-width: 860px) { .rd-values-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- contact form */
.rd-contact-card {
    background: #fff;
    border: 1px solid var(--rd-line);
    border-radius: 8px;
    padding: 36px;
    margin-top: 8px;
}
@media (max-width: 860px) { .rd-contact-card { padding: 24px; } }
.rd-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
@media (max-width: 860px) { .rd-contact-grid { grid-template-columns: 1fr; } }
.rd-form-group { margin-bottom: 20px; }
.rd-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rd-text-sub);
    margin-bottom: 8px;
}
.rd-form-control {
    width: 100%;
    font-family: var(--rd-body);
    font-size: 15px;
    padding: 12px 14px;
    border-radius: 4px;
    border: 1px solid var(--rd-line);
    background: var(--rd-paper-dim);
    transition: all 0.2s;
}
.rd-form-control:focus {
    outline: none;
    background: #fff;
    border-color: var(--rd-gold);
    box-shadow: 0 0 0 3px rgba(var(--rd-gold-rgb), 0.15);
}
.rd-btn-submit {
    width: 100%;
    font-family: var(--rd-body);
    background: var(--rd-gold);
    color: #fff;
    padding: 15px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.rd-btn-submit:hover { background: var(--rd-gold-hover); }

/* ---------------------------------------------------------------- closing CTA */
.rd-cta-banner {
    background: var(--rd-navy);
    text-align: center;
    padding: 90px 0;
}
.rd-cta-banner h2 {
    color: #fff;
    font-size: 34px;
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--rd-display);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.rd-cta-banner p {
    color: var(--rd-on-dark-soft);
    margin: 16px auto 0;
    max-width: 480px;
    font-size: 15px;
}
.rd-cta-banner .rd-hero-ctas { justify-content: center; margin-top: 32px; }
@media (max-width: 860px) { .rd-cta-banner h2 { font-size: 26px; } }

/* ---------------------------------------------------------------- company details / map */
.rd-legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 860px) { .rd-legal-grid { grid-template-columns: 1fr; gap: 32px; } }
.rd-legal-item { display: flex; gap: 18px; margin-top: 28px; }
.rd-legal-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 8px;
    background: var(--rd-gold-tint);
    display: flex;
    align-items: center;
    justify-content: center;
}
.rd-legal-icon svg { width: 20px; height: 20px; stroke: var(--rd-gold-dark); fill: none; }
.rd-legal-item h4 { font-size: 15px; margin-bottom: 4px; color: var(--rd-text); }
.rd-legal-item p { font-size: 14px; color: var(--rd-text-sub); }
.rd-legal-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    border-top: 1px solid var(--rd-line);
    padding-top: 24px;
}
.rd-legal-list dt, .rd-legal-list .rd-dt {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rd-gold-dark);
    margin-bottom: 4px;
}
.rd-legal-list .rd-dd { font-size: 14px; font-weight: 600; color: var(--rd-text); }
.rd-legal-list .rd-dd a { color: inherit; text-decoration: none; }
.rd-legal-list .rd-dd a:hover { color: var(--rd-gold); }
@media (max-width: 520px) { .rd-legal-list { grid-template-columns: 1fr; } }
.rd-map-card {
    position: relative;
    height: 420px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--rd-line);
}
.rd-map-iframe { width: 100%; height: 100%; border: 0; }
.rd-map-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background: var(--rd-navy);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}
.rd-map-btn:hover { background: var(--rd-gold); }

/* ---------------------------------------------------------------- footer */
.rd-footer {
    background-color: var(--rd-navy);
    border-top: 1px solid var(--rd-navy-line);
    color: var(--rd-on-dark-dim);
    padding: 56px 0 24px;
}
.rd-footer .site-container {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    padding: 0 32px;
}
.rd-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}
@media (max-width: 860px) { .rd-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .rd-footer-grid { grid-template-columns: 1fr; } }
.rd-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.rd-footer-blurb {
    color: var(--rd-on-dark-dim);
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 320px;
}
.rd-footer-heading {
    color: #fff;
    font-family: var(--rd-display);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.rd-footer-links, .rd-footer-hours { list-style: none; padding: 0; margin: 0; }
.rd-footer-links li { margin-bottom: 10px; }
.rd-footer-links a {
    color: var(--rd-on-dark-dim) !important;
    font-size: 13.5px;
    text-decoration: none;
    transition: color 0.2s;
}
.rd-footer-links a:hover { color: var(--rd-gold) !important; }
.rd-footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--rd-on-dark-dim);
    font-size: 13.5px;
    margin-bottom: 10px;
}
.rd-white-text { color: var(--rd-on-dark); }
.rd-yellow-text { color: var(--rd-gold); }
.rd-footer-bottom {
    border-top: 1px solid var(--rd-navy-line);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--rd-on-dark-dim);
    font-size: 13px;
}
@media (max-width: 860px) {
    .rd-footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------------------------------------------------------------- mobile call button */
.rd-mobile-call-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    background: var(--rd-gold);
    color: #fff !important;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 18px 30px -12px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}
.rd-mobile-call-btn:hover, .rd-mobile-call-btn:active { background: var(--rd-gold-hover); }
.rd-mobile-call-btn svg { width: 22px; height: 22px; }
@media (min-width: 861px) { .rd-mobile-call-btn { display: none; } }
