:root {
    --rbm-bg: #f3f3f3;
    --rbm-surface: #ffffff;
    --rbm-text: #19202d;
    --rbm-muted: #667085;
    --rbm-border: #e4e7ec;
    --rbm-red: #e3362d;
    --rbm-red-dark: #c72a22;
    --rbm-black: #111217;
    --rbm-dark-2: #151821;
    --rbm-green: #10a94d;
    --rbm-blue: #1f66c2;
    --rbm-shadow: 0 10px 24px rgba(17, 18, 23, 0.08);
    --rbm-radius: 18px;
    --rbm-container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--rbm-bg);
    color: var(--rbm-text);
    line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0 0 1rem; line-height: 1.15; }
ul { margin: 0; padding: 0; list-style: none; }
iframe { width: 100%; border: 0; display: block; }
.container { width: min(var(--rbm-container), calc(100% - 32px)); margin: 0 auto; }
.narrow-container { width: min(860px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 72px 0; }
.section--light { background: #f6f6f7; }
.section--dark { background: var(--rbm-black); color: #f8fafc; }
.section-heading { margin-bottom: 34px; }
.section-heading--center { text-align: center; }
.section-heading--compact { max-width: 760px; margin-left: auto; margin-right: auto; }
.section-heading--light p,
.section-heading--light h2 { color: #fff; }
.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--rbm-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}
.eyebrow--red { color: var(--rbm-red); }
.site-main h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.site-main h2 { font-size: clamp(1.8rem, 2.2vw, 2.5rem); }
.site-main h3 { font-size: 1.28rem; }

.top-bar {
    background: var(--rbm-black);
    color: #fff;
    font-size: 14px;
}
.top-bar__inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}
.top-bar__left,
.top-bar__right { display: flex; align-items: center; gap: 18px; }
.top-bar__left span,
.top-bar__left a,
.top-bar__right { opacity: 0.95; }
.main-nav {
    background: #fff;
    border-bottom: 1px solid var(--rbm-border);
    position: sticky;
    top: 0;
    z-index: 40;
}
.main-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 92px;
}
.site-branding { flex: 0 0 auto; }
.rbm-text-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.rbm-text-logo__box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 106px;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 8px;
    background: var(--rbm-red);
    color: #fff;
    font-weight: 800;
    font-size: 1.45rem;
}
.rbm-text-logo__meta {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.rbm-text-logo__meta strong {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
}
.rbm-text-logo__meta small {
    color: #445065;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
}
.primary-nav { margin-left: auto; }
.primary-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 700;
    font-size: 15px;
}
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu a:hover { color: var(--rbm-red); }
.header-call-btn,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 800;
    transition: 0.22s ease;
}
.header-call-btn { background: var(--rbm-red); color: #fff; white-space: nowrap; }
.header-call-btn:hover,
.btn--primary:hover { background: var(--rbm-red-dark); color: #fff; }
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: var(--rbm-black);
}

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 500px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17,18,23,0.76), rgba(17,18,23,0.28));
}
.hero-section__inner {
    position: relative;
    z-index: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}
.hero-copy { max-width: 780px; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy h1 span,
.hero-copy h1 strong {
    display: block;
    font-size: clamp(2.4rem, 5vw, 4.65rem);
    font-weight: 900;
}
.hero-copy h1 strong { color: var(--rbm-red); }
.hero-copy p { font-size: 1.28rem; color: rgba(255,255,255,0.95); margin-bottom: 24px; }
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.btn { border: 0; cursor: pointer; }
.btn--primary { background: var(--rbm-red); color: #fff; }
.btn--white { background: #fff; color: var(--rbm-black); }
.btn--green { background: var(--rbm-green); color: #fff; }
.btn--block { width: 100%; }
.btn--small { padding: 12px 20px; font-size: 0.92rem; }
.btn:hover { transform: translateY(-1px); }

.announcement-bar { background: #f0f1f2; padding: 20px 0; }
.announcement-bar p {
    margin: 0;
    background: #fff;
    border: 1px solid #e8e9eb;
    border-radius: 14px;
    padding: 14px 20px;
    text-align: center;
    color: #4b5565;
}
.announcement-bar a { color: var(--rbm-red); font-weight: 800; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.service-card {
    background: #fff;
    border: 1px solid #eceff3;
    border-top: 4px solid var(--rbm-red);
    border-radius: var(--rbm-radius);
    box-shadow: var(--rbm-shadow);
    padding: 28px 24px;
}
.service-card h2,
.service-card h3 { font-size: 1.55rem; margin-bottom: 12px; }
.service-card p { color: #5e6675; min-height: 92px; }
.service-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(227, 54, 45, 0.08);
    margin-bottom: 16px;
    position: relative;
}
.service-card__icon::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 2px solid var(--rbm-red);
}
.service-card__link,
.post-card__link {
    color: var(--rbm-red);
    font-weight: 800;
    font-size: 0.94rem;
}
.service-card--image { padding: 0; overflow: hidden; }
.service-card__image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.service-card__body { padding: 22px 22px 26px; }
.service-card__body p { min-height: 82px; }

.regions-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 40px;
    align-items: start;
}
.regions-copy h2 { color: #fff; margin-bottom: 16px; }
.regions-copy p { color: rgba(255,255,255,0.78); }
.regions-list { display: grid; gap: 18px; margin-top: 24px; }
.region-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.region-item__pin {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--rbm-red);
    flex: 0 0 auto;
    position: relative;
    margin-top: 4px;
}
.region-item__pin::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 11px;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.region-item strong { display: block; margin-bottom: 4px; font-size: 1.1rem; }
.region-item p { margin: 0; font-size: 0.98rem; }
.regions-media img,
.contact-map-box img { border-radius: 10px; }
.regions-media {
    display: grid;
    gap: 14px;
}
.map-box {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    overflow: hidden;
}
.map-box iframe,
.contact-map-box iframe { min-height: 260px; }

.cta-band {
    background: var(--rbm-red);
    color: #fff;
    text-align: center;
    padding: 48px 0;
}
.cta-band__inner { max-width: 760px; }
.cta-band h2 { color: #fff; font-size: 2rem; }
.cta-band p { color: rgba(255,255,255,0.92); }
.cta-band__actions,
.center-btn-wrap { display: flex; justify-content: center; gap: 14px; }
.center-btn-wrap { margin-top: 26px; }

.site-footer {
    background: var(--rbm-black);
    color: #f8fafc;
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 36px;
}
.footer-column h3 { color: #fff; margin-bottom: 18px; }
.footer-column p,
.footer-column li,
.footer-column a { color: rgba(255,255,255,0.74); }
.footer-list { display: grid; gap: 10px; }
.footer-link { color: var(--rbm-red); font-weight: 700; display: inline-block; margin-top: 8px; }
.social-links { display: flex; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.social-links a {
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    padding: 8px 14px;
}
.footer-bottom {
    margin-top: 34px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom__inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.footer-menu { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-menu a { color: rgba(255,255,255,0.48); font-size: 0.92rem; }
.mobile-contact-bar {
    display: none;
    position: sticky;
    bottom: 0;
    z-index: 70;
    grid-template-columns: 1fr 1fr;
}
.mobile-contact-bar a {
    text-align: center;
    padding: 14px 12px;
    font-weight: 800;
    color: #fff;
}
.mobile-contact-bar a:first-child { background: var(--rbm-red); }
.mobile-contact-bar a:last-child { background: var(--rbm-green); }

.section--blog-index { padding-top: 60px; }
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.post-card {
    background: #fff;
    border: 1px solid #e9edf2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--rbm-shadow);
}
.post-card__thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.post-card__body { padding: 18px 18px 22px; }
.post-card__meta { color: #8690a0; font-size: 0.9rem; margin-bottom: 10px; }
.post-card h2 { font-size: 1.35rem; min-height: 66px; }
.post-card p { color: #5f6978; min-height: 80px; }
.pagination-wrap { margin-top: 32px; }
.pagination {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--rbm-border);
}
.page-numbers.current { background: var(--rbm-red); color: #fff; border-color: var(--rbm-red); }

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
}
.article-card,
.widget-box,
.card-simple,
.info-card-large,
.sidebar-card,
.contact-emergency-box {
    background: #fff;
    border: 1px solid #e8ebef;
    border-radius: var(--rbm-radius);
    box-shadow: var(--rbm-shadow);
}
.article-card { padding: 28px; }
.article-card__image { margin: 18px 0 22px; overflow: hidden; border-radius: 16px; }
.entry-content h2 { font-size: 1.7rem; margin-top: 1.6rem; }
.entry-content h3 { font-size: 1.25rem; margin-top: 1.4rem; }
.entry-content ul,
.entry-content ol { padding-left: 1.3rem; margin: 0 0 1rem; }
.entry-content ul li,
.entry-content ol li { margin-bottom: 0.5rem; }
.widget-box { padding: 24px; }

.service-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 72px;
    background: linear-gradient(100deg, #101217 62%, #2a1517 100%);
    color: #fff;
}
.service-hero::after {
    content: '';
    position: absolute;
    top: -40px;
    right: 12%;
    width: 220px;
    height: 460px;
    background: linear-gradient(180deg, rgba(227,54,45,0.3), rgba(227,54,45,0));
    transform: skew(-14deg);
}
.service-hero__inner { position: relative; z-index: 1; }
.service-hero__inner--center { text-align: center; }
.service-hero__copy { max-width: 780px; }
.service-hero__copy--center { margin: 0 auto; }
.service-hero__copy p { color: rgba(255,255,255,0.86); font-size: 1.15rem; }

.stats-strip {
    margin-top: -34px;
    position: relative;
    z-index: 2;
}
.stats-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 20px;
    box-shadow: var(--rbm-shadow);
    text-align: center;
}
.stat-card strong { display: block; color: var(--rbm-red); font-size: 2.4rem; font-weight: 900; }
.stat-card span { color: #677180; }

.about-main-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 34px;
    align-items: center;
}
.about-main-grid__image img {
    border-radius: 22px;
    box-shadow: var(--rbm-shadow);
}
.about-list { display: grid; gap: 12px; margin-top: 22px; }
.about-list li { padding-left: 24px; position: relative; }
.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    background: var(--rbm-red);
    border-radius: 50%;
}
.about-contact-inline { color: #616a79; margin-top: 16px; }
.quote-section { background: #fafafa; padding: 68px 0; text-align: center; }
.quote-section blockquote { margin: 0 auto; max-width: 760px; }
.quote-section p { font-size: clamp(1.5rem, 3vw, 2rem); color: #273041; }
.quote-section cite { color: #7a8292; }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.feature-card {
    background: #fff;
    border: 1px solid #eceff3;
    border-radius: 18px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--rbm-shadow);
}
.feature-card p { color: #616a79; margin: 0; }
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.contact-card-mini {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 22px;
    min-height: 136px;
}
.contact-card-mini span { display: block; color: rgba(255,255,255,0.64); margin-bottom: 10px; }
.contact-card-mini strong { font-size: 1.2rem; color: #fff; }

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 0.98fr;
    gap: 34px;
    align-items: start;
}
.info-card-large { padding: 28px 28px 18px; }
.info-row { margin-bottom: 22px; }
.info-row strong { display: block; margin-bottom: 8px; font-size: 1.1rem; }
.info-row p { margin: 0; color: #596273; }
.info-row span { color: var(--rbm-green); font-weight: 700; }
.contact-map-box { overflow: hidden; border-radius: 18px; box-shadow: var(--rbm-shadow); }
.contact-map-box iframe, .contact-map-box img { min-height: 440px; width: 100%; object-fit: cover; }
.contact-emergency-box {
    margin-top: 24px;
    background: var(--rbm-blue);
    border-color: transparent;
    color: #fff;
    padding: 28px;
}
.contact-emergency-box h3,
.contact-emergency-box p { color: #fff; }
.contact-emergency-box .btn { margin-top: 12px; }

.service-detail-wrap { padding-top: 50px; }
.service-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
    margin-top: -26px;
}
.service-detail-image {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--rbm-shadow);
    margin-bottom: 18px;
}
.service-detail-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article-card--service { padding-top: 24px; }
.tip-box {
    background: #fafafa;
    border-left: 4px solid var(--rbm-red);
    border-radius: 12px;
    padding: 18px 18px 16px;
    margin: 26px 0;
}
.tip-box strong { display: block; margin-bottom: 8px; }
.faq-wrap h2 { font-size: 1.5rem; margin-bottom: 18px; }
.faq-item {
    border: 1px solid #e6eaf0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
}
.faq-question {
    width: 100%;
    text-align: left;
    border: 0;
    background: #fff;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    position: relative;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rbm-red);
    font-size: 1.2rem;
}
.faq-item.is-open .faq-question::after { content: '−'; }
.faq-answer { display: none; padding: 0 20px 18px; color: #5f6978; }
.faq-item.is-open .faq-answer { display: block; }
.service-cta-box {
    margin-top: 18px;
    background: linear-gradient(90deg, #101319, #152132);
    color: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}
.service-cta-box h3,
.service-cta-box p { color: #fff; }
.service-cta-box__actions { display: grid; gap: 12px; min-width: 180px; }
.sidebar-card {
    padding: 24px;
    margin: 0 0 15px;
}
.sidebar-card--outline { border-top: 4px solid var(--rbm-red); }
.check-list,
.arrow-list { display: grid; gap: 14px; }
.check-list li,
.arrow-list li { padding-left: 26px; position: relative; color: #5e6675; }
.check-list li::before,
.arrow-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--rbm-red);
}
.arrow-list li::before { border-radius: 0; width: 10px; height: 10px; transform: rotate(45deg); border-left: 0; border-bottom: 0; }
.hours-box {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #eceff3;
}
.hours-box h4 { margin-bottom: 10px; font-size: 1rem; }
.hours-box p { margin: 0 0 6px; color: #697383; }
.empty-state {
    text-align: center;
    padding: 40px 32px;
}

@media (max-width: 1120px) {
    .service-grid,
    .post-grid,
    .feature-grid,
    .contact-cards-grid,
    .stats-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .regions-grid,
    .about-main-grid,
    .contact-page-grid,
    .service-detail-grid,
    .content-layout,
    .footer-grid { grid-template-columns: 1fr; }
    .service-detail-wrap { padding-top: 28px; }
}

@media (max-width: 900px) {
    .top-bar__inner { flex-direction: column; align-items: flex-start; }
    .nav-toggle { display: flex; }
    .primary-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        border-bottom: 1px solid var(--rbm-border);
        padding: 12px 16px 18px;
    }
    .main-nav.is-open .primary-nav { display: block; }
    .primary-menu { flex-direction: column; align-items: flex-start; gap: 14px; }
    .header-call-btn { display: none; }
    .main-nav__inner { min-height: 78px; }
    .hero-section,
    .hero-section__inner { min-height: 440px; }
    .service-card p,
    .post-card p,
    .service-card__body p { min-height: 0; }
    .service-cta-box { flex-direction: column; align-items: stretch; }
}

@media (max-width: 680px) {
    .container, .narrow-container { width: min(100% - 24px, var(--rbm-container)); }
    .section { padding: 54px 0; }
    .service-grid,
    .post-grid,
    .feature-grid,
    .contact-cards-grid,
    .stats-strip__grid { grid-template-columns: 1fr; }
    .hero-copy p { font-size: 1.05rem; }
    .hero-actions,
    .cta-band__actions,
    .center-btn-wrap { flex-direction: column; }
    .footer-bottom__inner { flex-direction: column; align-items: flex-start; padding: 16px 0 80px; }
    .mobile-contact-bar { display: grid; }
    .post-card h2 { min-height: 0; }
    .article-card,
    .sidebar-card,
    .widget-box,
    .info-card-large,
    .contact-emergency-box { padding: 22px; }
}
