:root {
  --rr-ink: #101512;
  --rr-ink-2: #1b211e;
  --rr-paper: #f5f3ed;
  --rr-white: #ffffff;
  --rr-muted: #667069;
  --rr-line: #dcded8;
  --rr-amber: #f4b942;
  --rr-amber-bright: #ffc958;
  --rr-green: #40c88a;
  --rr-radius: 22px;
  --rr-shadow: 0 24px 60px rgba(16, 21, 18, .12);
  --rr-container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; color: var(--rr-ink); background: var(--rr-white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.rr-container { width: min(calc(100% - 48px), var(--rr-container)); margin-inline: auto; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { clip: auto !important; width: auto; height: auto; top: 8px; left: 8px; z-index: 100000; padding: 12px 18px; color: var(--rr-ink); background: var(--rr-white); border-radius: 6px; }

.rr-topbar { position: relative; z-index: 30; color: #cbd0cc; background: #0b0f0d; font-size: 12px; letter-spacing: .02em; }
.rr-topbar__inner { min-height: 34px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.rr-topbar span { display: inline-flex; align-items: center; gap: 7px; }
.rr-topbar .dashicons { width: 14px; height: 14px; font-size: 14px; color: var(--rr-amber); }
.rr-status-dot { display: inline-block !important; width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--rr-green); box-shadow: 0 0 0 4px rgba(64, 200, 138, .14); }

.rr-header { position: sticky; top: 0; z-index: 25; border-bottom: 1px solid rgba(255, 255, 255, .08); background: rgba(16, 21, 18, .92); color: var(--rr-white); backdrop-filter: blur(18px); transition: box-shadow .25s ease, background .25s ease; }
.rr-header.is-scrolled { box-shadow: 0 8px 28px rgba(0,0,0,.18); background: rgba(11, 15, 13, .97); }
.rr-header__inner { min-height: 78px; display: flex; align-items: center; gap: 26px; }
.rr-brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 10px; color: var(--rr-white); }
.rr-brand .custom-logo-link { display: flex; }
.rr-brand .custom-logo { max-height: 52px; width: auto; }
.rr-brand__mark { display: grid; place-items: center; width: 39px; height: 39px; color: var(--rr-ink); background: var(--rr-amber); border-radius: 11px 11px 11px 3px; transform: rotate(-4deg); }
.rr-brand__mark .dashicons { width: 22px; height: 22px; font-size: 22px; transform: rotate(4deg); }
.rr-brand__text { display: flex; flex-direction: column; font-weight: 850; font-size: 16px; line-height: 1.05; letter-spacing: -.03em; }
.rr-brand__text small { margin-top: 5px; color: #aeb6b0; font-size: 8px; font-weight: 700; letter-spacing: .16em; }
.rr-nav { margin-left: auto; }
.rr-nav ul { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.rr-nav a { position: relative; display: block; color: #d5d9d6; font-size: 13px; font-weight: 650; white-space: nowrap; }
.rr-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--rr-amber); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.rr-nav a:hover::after, .rr-nav .current-menu-item > a::after { transform: scaleX(1); }
.rr-header-call { display: inline-flex; align-items: center; gap: 9px; color: var(--rr-white); }
.rr-header-call > .dashicons { width: 18px; height: 18px; color: var(--rr-amber); font-size: 18px; }
.rr-header-call > span:last-child { display: flex; flex-direction: column; font-weight: 780; font-size: 14px; line-height: 1.15; white-space: nowrap; }
.rr-header-call small { margin-bottom: 2px; color: #abb3ae; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .09em; }
.rr-menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; cursor: pointer; }
.rr-menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--rr-white); transition: .2s ease; }

.rr-btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 12px; padding: 0 24px; color: var(--rr-ink); background: var(--rr-amber); border: 1px solid var(--rr-amber); border-radius: 11px; font-weight: 780; font-size: 14px; line-height: 1; cursor: pointer; box-shadow: 0 7px 18px rgba(244, 185, 66, .16); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.rr-btn:hover { background: var(--rr-amber-bright); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(244, 185, 66, .22); }
.rr-btn--small { min-height: 42px; padding-inline: 18px; font-size: 12px; border-radius: 9px; }
.rr-btn--ghost { color: var(--rr-white); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); box-shadow: none; }
.rr-btn--ghost:hover { background: rgba(255,255,255,.12); }
.rr-btn--dark { color: var(--rr-white); background: var(--rr-ink); border-color: var(--rr-ink); box-shadow: none; }
.rr-btn--dark:hover { color: var(--rr-ink); background: var(--rr-amber); border-color: var(--rr-amber); }
.rr-btn--full { width: 100%; }

.rr-hero { position: relative; min-height: 690px; display: flex; align-items: center; overflow: hidden; color: var(--rr-white); background: var(--rr-ink); }
.rr-hero__image { position: absolute; inset: 0; background: url('../images/hero-mobile-mechanic.png') 58% center / cover no-repeat; transform: scale(1.01); }
.rr-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,13,11,.97) 0%, rgba(9,13,11,.9) 31%, rgba(9,13,11,.52) 54%, rgba(9,13,11,.08) 82%), linear-gradient(0deg, rgba(8,12,10,.34), transparent 40%); }
.rr-hero__content { position: relative; z-index: 2; padding-block: 106px 126px; }
.rr-eyebrow, .rr-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: #d09a2f; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .17em; }
.rr-eyebrow { color: #e2e7e3; }
.rr-hero h1 { width: min(720px, 68%); margin: 0; font-size: clamp(48px, 6vw, 84px); line-height: .98; letter-spacing: -.062em; text-wrap: balance; }
.rr-hero__content > p { max-width: 590px; margin: 28px 0 32px; color: #d2d8d4; font-size: 18px; line-height: 1.6; }
.rr-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.rr-trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: #cbd2cd; font-size: 12px; font-weight: 600; }
.rr-trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.rr-trust-row .dashicons { width: 16px; height: 16px; color: var(--rr-green); font-size: 16px; }
.rr-hero__rating { position: absolute; z-index: 3; right: max(28px, calc((100vw - var(--rr-container)) / 2)); bottom: 30px; min-width: 218px; display: grid; grid-template-columns: auto auto; align-items: center; gap: 1px 12px; padding: 16px 20px; background: rgba(255,255,255,.94); color: var(--rr-ink); border-radius: 14px; box-shadow: var(--rr-shadow); }
.rr-hero__rating strong { grid-row: 1 / 3; font-size: 36px; line-height: 1; letter-spacing: -.05em; }
.rr-hero__rating span { color: #e5a11b; font-size: 13px; letter-spacing: 2px; }
.rr-hero__rating small { color: var(--rr-muted); font-size: 10px; }

.rr-proofbar { border-bottom: 1px solid var(--rr-line); background: var(--rr-white); }
.rr-proofbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.rr-proofbar__grid > div { position: relative; display: flex; flex-direction: column; padding: 26px 24px; }
.rr-proofbar__grid > div:first-child { padding-left: 0; }
.rr-proofbar__grid > div:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 24px; bottom: 24px; width: 1px; background: var(--rr-line); }
.rr-proofbar strong { font-size: 13px; }
.rr-proofbar span { color: var(--rr-muted); font-size: 11px; }

.rr-section { padding-block: 112px; }
.rr-section-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 80px; margin-bottom: 54px; }
.rr-section-heading .rr-kicker { margin-bottom: 12px; }
.rr-section h2, .rr-contact h2, .rr-faq h2 { max-width: 760px; margin: 0; font-size: clamp(36px, 4.2vw, 58px); line-height: 1.06; letter-spacing: -.052em; text-wrap: balance; }
.rr-section-heading > p { margin: 0 0 6px; color: var(--rr-muted); font-size: 16px; }
.rr-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rr-service-card { position: relative; min-height: 430px; padding: 34px; overflow: hidden; border: 1px solid var(--rr-line); border-radius: var(--rr-radius); background: #fafaf7; transition: transform .25s ease, box-shadow .25s ease, border .25s ease; }
.rr-service-card:hover { transform: translateY(-6px); border-color: #c5c8c2; box-shadow: var(--rr-shadow); }
.rr-service-card--featured { color: var(--rr-white); border-color: var(--rr-ink); background: var(--rr-ink); }
.rr-card-icon { display: grid; place-items: center; width: 58px !important; height: 58px !important; margin-bottom: 42px; color: var(--rr-ink); background: var(--rr-amber); border-radius: 16px; font-size: 28px !important; }
.rr-card-number { position: absolute; top: 28px; right: 29px; color: #a8ada9; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.rr-service-card h3 { margin: 0 0 12px; font-size: 23px; line-height: 1.15; letter-spacing: -.035em; }
.rr-service-card p { margin: 0 0 24px; color: var(--rr-muted); font-size: 14px; }
.rr-service-card--featured p, .rr-service-card--featured li { color: #bdc4bf; }
.rr-service-card ul { margin: 0 0 28px; padding: 0; list-style: none; }
.rr-service-card li { position: relative; margin: 9px 0; padding-left: 20px; color: #4e5751; font-size: 12px; }
.rr-service-card li::before { content: "✓"; position: absolute; left: 0; color: var(--rr-green); font-weight: 800; }
.rr-service-card > a { position: absolute; bottom: 31px; left: 34px; font-size: 12px; font-weight: 800; }
.rr-service-card > a span { margin-left: 7px; color: #c88709; }

.rr-inspections { overflow: hidden; background: var(--rr-paper); }
.rr-split { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(50px, 8vw, 112px); }
.rr-inspection-visual { position: relative; min-height: 520px; display: grid; place-items: center; border-radius: 28px; background: radial-gradient(circle at 30% 20%, #e2c993 0, transparent 28%), linear-gradient(145deg, #1a211d, #2d3832); box-shadow: var(--rr-shadow); }
.rr-inspection-visual::before, .rr-inspection-visual::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.rr-inspection-visual::before { width: 360px; height: 360px; }
.rr-inspection-visual::after { width: 460px; height: 460px; }
.rr-report-card { position: relative; z-index: 2; width: 68%; min-width: 310px; padding: 27px; border: 1px solid rgba(255,255,255,.14); border-radius: 19px; background: rgba(255,255,255,.96); box-shadow: 0 24px 50px rgba(0,0,0,.25); transform: rotate(-2deg); }
.rr-report-card__top { display: flex; align-items: center; gap: 9px; padding-bottom: 17px; border-bottom: 1px solid var(--rr-line); color: var(--rr-muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.rr-report-card__top .dashicons { color: #bf8412; }
.rr-report-score { display: flex; flex-direction: column; margin: 23px 0 17px; }
.rr-report-score strong { font-size: 44px; line-height: .95; letter-spacing: -.06em; }
.rr-report-score span { margin-top: 4px; color: var(--rr-muted); font-size: 10px; }
.rr-report-bars { display: flex; flex-direction: column; gap: 7px; margin: 18px 0; }
.rr-report-bars span { width: 100%; height: 6px; overflow: hidden; background: #e6e8e3; border-radius: 6px; }
.rr-report-bars span::before { content: ""; display: block; width: var(--score); height: 100%; background: var(--rr-green); border-radius: inherit; }
.rr-report-card ul { margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--rr-line); list-style: none; }
.rr-report-card li { display: flex; align-items: center; gap: 8px; margin: 9px 0; font-size: 11px; font-weight: 650; }
.rr-check { display: grid; place-items: center; width: 18px; height: 18px; color: #167a4d; background: #dff5e9; border-radius: 50%; font-size: 10px; }
.rr-visual-badge { position: absolute; z-index: 3; right: -25px; bottom: 54px; display: grid; grid-template-columns: auto 1fr; column-gap: 10px; min-width: 210px; padding: 16px 18px; background: var(--rr-amber); border-radius: 13px; box-shadow: 0 14px 32px rgba(0,0,0,.22); }
.rr-visual-badge .dashicons { grid-row: 1 / 3; align-self: center; }
.rr-visual-badge strong { font-size: 11px; }
.rr-visual-badge small { font-size: 9px; }
.rr-split__content .rr-lead { margin: 25px 0 32px; color: var(--rr-muted); font-size: 17px; }
.rr-feature-list { margin-bottom: 33px; }
.rr-feature-list > div { display: grid; grid-template-columns: 38px 1fr; gap: 15px; padding: 16px 0; border-top: 1px solid #d4d4cd; }
.rr-feature-list > div > span { display: grid; place-items: center; width: 33px; height: 33px; color: #8b5e07; background: #f6e2b8; border-radius: 9px; font-size: 10px; font-weight: 800; }
.rr-feature-list p { display: flex; flex-direction: column; margin: 0; color: var(--rr-muted); font-size: 12px; }
.rr-feature-list strong { margin-bottom: 2px; color: var(--rr-ink); font-size: 14px; }

.rr-process { color: var(--rr-white); background: var(--rr-ink); }
.rr-section-heading--light > p { color: #aeb6b1; }
.rr-process .rr-kicker { color: var(--rr-amber); }
.rr-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #343b37; }
.rr-process-grid > div { position: relative; min-height: 285px; padding: 38px 40px 12px 0; }
.rr-process-grid > div:not(:last-child) { border-right: 1px solid #343b37; margin-right: 36px; }
.rr-process-grid .dashicons { width: 34px; height: 34px; margin-bottom: 35px; color: var(--rr-amber); font-size: 34px; }
.rr-process-no { position: absolute; top: 39px; right: 38px; color: #707873; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.rr-process-grid h3 { margin: 0 0 10px; font-size: 20px; }
.rr-process-grid p { margin: 0; color: #aeb6b1; font-size: 13px; }

.rr-reviews { background: #fcfcfa; }
.rr-rating-large { display: grid; grid-template-columns: auto auto; align-items: center; gap: 0 10px; }
.rr-rating-large strong { grid-row: 1 / 3; font-size: 44px; line-height: 1; letter-spacing: -.06em; }
.rr-rating-large span, .rr-stars { color: #e5a11b; letter-spacing: 2px; }
.rr-rating-large small { color: var(--rr-muted); font-size: 10px; }
.rr-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rr-review-grid blockquote { margin: 0; padding: 30px; border: 1px solid var(--rr-line); border-radius: var(--rr-radius); background: var(--rr-white); }
.rr-review-grid blockquote > p { min-height: 116px; margin: 16px 0 26px; font-size: 14px; }
.rr-review-grid footer { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid #eaebe7; }
.rr-review-grid footer > span { display: grid; place-items: center; width: 39px; height: 39px; color: var(--rr-white); background: var(--rr-ink); border-radius: 50%; font-size: 10px; font-weight: 800; }
.rr-review-grid footer div { display: flex; flex-direction: column; }
.rr-review-grid footer strong { font-size: 12px; }
.rr-review-grid footer small { color: var(--rr-muted); font-size: 10px; }
.rr-stars { font-size: 12px; }

.rr-faq { border-top: 1px solid var(--rr-line); }
.rr-faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 120px); }
.rr-faq__grid > div:first-child > p { margin: 24px 0; color: var(--rr-muted); }
.rr-text-link { display: inline-flex; align-items: center; gap: 8px; color: #9b6809; font-size: 13px; font-weight: 800; }
.rr-accordion { border-top: 1px solid var(--rr-line); }
.rr-faq-item { border-bottom: 1px solid var(--rr-line); }
.rr-faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; color: var(--rr-ink); background: transparent; border: 0; text-align: left; font-weight: 750; cursor: pointer; }
.rr-faq-item button i { display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 28px; background: var(--rr-paper); border-radius: 50%; font-style: normal; font-weight: 500; }
.rr-faq-answer { padding: 0 50px 23px 0; }
.rr-faq-answer p { margin: 0; color: var(--rr-muted); font-size: 13px; }

.rr-contact { padding-block: 100px; overflow: hidden; color: var(--rr-white); background: linear-gradient(130deg, #18201c 0%, #0d120f 100%); }
.rr-contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.rr-kicker--light { color: var(--rr-amber); }
.rr-contact__content > p { max-width: 500px; margin: 24px 0 36px; color: #b9c0bb; }
.rr-contact-details { display: flex; flex-direction: column; gap: 15px; }
.rr-contact-details > a, .rr-contact-details > div { display: flex; align-items: center; gap: 15px; }
.rr-contact-details > * > .dashicons { display: grid; place-items: center; width: 38px; height: 38px; color: var(--rr-amber); background: rgba(255,255,255,.07); border-radius: 9px; font-size: 18px; }
.rr-contact-details div div, .rr-contact-details a div { display: flex; flex-direction: column; }
.rr-contact-details small { color: #8f9992; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.rr-contact-details strong { font-size: 13px; }
.rr-form-card { padding: 35px; color: var(--rr-ink); background: var(--rr-white); border-radius: 24px; box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.rr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rr-form-card label { display: flex; flex-direction: column; gap: 7px; margin-bottom: 15px; color: #303832; font-size: 11px; font-weight: 750; }
.rr-form-card input, .rr-form-card select { width: 100%; height: 51px; padding: 0 14px; color: var(--rr-ink); background: #f7f7f3; border: 1px solid #e1e3dd; border-radius: 9px; outline: 0; transition: border .2s, box-shadow .2s; }
.rr-form-card input:focus, .rr-form-card select:focus { border-color: #b37a0c; box-shadow: 0 0 0 3px rgba(244,185,66,.2); }
.rr-form-card input::placeholder { color: #9ca29e; }
.rr-form-small { display: block; margin-top: 13px; color: var(--rr-muted); font-size: 9px; text-align: center; }
.rr-honeypot { position: absolute; left: -9999px; }
.rr-form-notice { margin-bottom: 18px; padding: 12px 14px; color: #7e241b; background: #f9dedb; border-radius: 8px; font-size: 12px; }
.rr-form-notice--sent { color: #17613f; background: #dff5e9; }

.rr-footer { padding-top: 72px; color: #bac1bc; background: #090d0b; }
.rr-footer__grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr 1.2fr; gap: 55px; padding-bottom: 62px; }
.rr-brand--footer { margin-bottom: 18px; }
.rr-footer__grid > div:first-child > p { max-width: 280px; color: #89928c; font-size: 12px; }
.rr-footer h3 { margin: 0 0 19px; color: var(--rr-white); font-size: 12px; }
.rr-footer ul { margin: 0; padding: 0; list-style: none; }
.rr-footer li { margin: 9px 0; color: #8f9892; font-size: 11px; }
.rr-footer a:hover { color: var(--rr-amber); }
.rr-footer__cta { padding: 25px; border: 1px solid #272e2a; border-radius: 15px; background: #101512; }
.rr-footer__cta p { color: #8f9892; font-size: 11px; }
.rr-footer__cta .rr-btn { min-height: 44px; padding-inline: 16px; font-size: 11px; }
.rr-footer__bottom { border-top: 1px solid #242a27; }
.rr-footer__bottom > div { min-height: 63px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #646e67; font-size: 9px; }
.rr-mobile-call { display: none; }

.rr-content { min-height: 60vh; padding-block: 80px 110px; }
.rr-page-header { max-width: 850px; margin-bottom: 45px; }
.rr-page-header h1 { margin: 0; font-size: clamp(42px, 6vw, 72px); line-height: 1.02; letter-spacing: -.055em; }
.rr-featured-image { width: 100%; max-height: 620px; object-fit: cover; margin-bottom: 45px; border-radius: var(--rr-radius); }
.rr-entry-content { max-width: 780px; font-size: 17px; }
.rr-entry-content h2 { margin-top: 1.8em; font-size: 34px; line-height: 1.15; }
.rr-entry-content a { color: #9b6809; text-decoration: underline; }
.rr-entry-content blockquote { margin-inline: 0; padding-left: 25px; border-left: 4px solid var(--rr-amber); font-size: 22px; }
.rr-post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.rr-post-card { overflow: hidden; border: 1px solid var(--rr-line); border-radius: var(--rr-radius); }
.rr-post-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.rr-post-card > div { padding: 27px; }
.rr-post-card h2 { margin: 7px 0 10px; line-height: 1.2; }
.rr-post-card p { color: var(--rr-muted); font-size: 13px; }
.rr-post-meta { color: #9b6809; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.rr-empty { padding-block: 70px; text-align: center; }
.rr-empty h1 { margin: 0 auto 16px; max-width: 650px; font-size: clamp(42px, 6vw, 70px); line-height: 1; letter-spacing: -.05em; }
.rr-empty p { margin-bottom: 30px; color: var(--rr-muted); }
.rr-elementor-content { min-height: 50vh; }
.rr-canvas { margin: 0; }

@media (max-width: 1100px) {
  .rr-nav ul { gap: 17px; }
  .rr-header-call { display: none; }
  .rr-hero h1 { width: min(740px, 78%); }
  .rr-service-card { padding: 27px; }
  .rr-service-card > a { left: 27px; }
}

@media (max-width: 900px) {
  .rr-header__inner { min-height: 70px; }
  .rr-menu-toggle { display: block; margin-left: auto; }
  .rr-menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .rr-menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .rr-menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .rr-nav { position: fixed; top: 104px; right: 0; bottom: 0; left: 0; padding: 38px 24px; background: #0b0f0d; visibility: hidden; opacity: 0; transform: translateY(-10px); transition: .2s ease; }
  .rr-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .rr-nav ul { flex-direction: column; align-items: flex-start; gap: 6px; }
  .rr-nav li { width: 100%; }
  .rr-nav a { padding: 14px 4px; font-size: 22px; }
  .rr-header-book { margin-left: 4px; }
  .rr-hero { min-height: 670px; }
  .rr-hero__image { background-position: 64% center; opacity: .66; }
  .rr-hero__shade { background: linear-gradient(90deg, rgba(9,13,11,.97), rgba(9,13,11,.6)), linear-gradient(0deg, rgba(9,13,11,.75), transparent 55%); }
  .rr-hero h1 { width: 88%; }
  .rr-proofbar__grid { grid-template-columns: 1fr 1fr; }
  .rr-proofbar__grid > div:nth-child(2)::after { display: none; }
  .rr-proofbar__grid > div:nth-child(n+3) { border-top: 1px solid var(--rr-line); }
  .rr-proofbar__grid > div:nth-child(3) { padding-left: 0; }
  .rr-section-heading { grid-template-columns: 1fr; gap: 20px; }
  .rr-service-grid { grid-template-columns: 1fr; }
  .rr-service-card { min-height: 390px; }
  .rr-split, .rr-contact__grid { grid-template-columns: 1fr; }
  .rr-inspection-visual { max-width: 650px; width: 100%; margin-inline: auto; }
  .rr-faq__grid { grid-template-columns: 1fr; gap: 45px; }
  .rr-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  body { padding-bottom: 64px; }
  .rr-container { width: min(calc(100% - 32px), var(--rr-container)); }
  .rr-topbar__inner { justify-content: center; }
  .rr-topbar__inner span:first-child { display: none; }
  .rr-header-book { display: none; }
  .rr-brand__text { font-size: 14px; }
  .rr-nav { top: 104px; }
  .rr-hero { min-height: 700px; align-items: flex-end; }
  .rr-hero__image { background-position: 68% center; }
  .rr-hero__shade { background: linear-gradient(0deg, rgba(8,12,10,.99) 0%, rgba(8,12,10,.84) 45%, rgba(8,12,10,.18) 100%); }
  .rr-hero__content { padding-block: 250px 70px; }
  .rr-hero h1 { width: 100%; font-size: clamp(43px, 13vw, 58px); }
  .rr-hero__content > p { margin-block: 21px 25px; font-size: 15px; }
  .rr-hero__actions { flex-direction: column; }
  .rr-hero__actions .rr-btn { width: 100%; }
  .rr-trust-row { gap: 9px 16px; margin-top: 25px; }
  .rr-hero__rating { display: none; }
  .rr-proofbar__grid { grid-template-columns: 1fr 1fr; }
  .rr-proofbar__grid > div { padding: 18px 12px; }
  .rr-proofbar__grid > div:nth-child(odd) { padding-left: 0; }
  .rr-proofbar__grid > div::after { top: 18px !important; bottom: 18px !important; }
  .rr-proofbar strong { font-size: 11px; }
  .rr-proofbar span { font-size: 9px; }
  .rr-section { padding-block: 78px; }
  .rr-section-heading { margin-bottom: 34px; }
  .rr-section h2, .rr-contact h2, .rr-faq h2 { font-size: 38px; }
  .rr-service-card { min-height: 400px; }
  .rr-inspection-visual { min-height: 430px; }
  .rr-report-card { width: 80%; min-width: 0; }
  .rr-inspection-visual::before { width: 270px; height: 270px; }
  .rr-inspection-visual::after { width: 350px; height: 350px; }
  .rr-visual-badge { right: -8px; bottom: 24px; min-width: 185px; }
  .rr-process-grid { grid-template-columns: 1fr; }
  .rr-process-grid > div { min-height: auto; padding: 30px 0; border-right: 0 !important; border-bottom: 1px solid #343b37; margin-right: 0 !important; }
  .rr-process-grid .dashicons { margin-bottom: 20px; }
  .rr-process-no { right: 0; }
  .rr-review-grid { grid-template-columns: 1fr; }
  .rr-review-grid blockquote > p { min-height: 0; }
  .rr-rating-large { display: none; }
  .rr-contact { padding-block: 76px; }
  .rr-form-card { padding: 25px 20px; }
  .rr-form-row { grid-template-columns: 1fr; gap: 0; }
  .rr-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .rr-footer__bottom > div { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 18px; }
  .rr-mobile-call { position: fixed; z-index: 100; right: 0; bottom: 0; left: 0; min-height: 64px; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--rr-ink); background: var(--rr-amber); font-weight: 850; box-shadow: 0 -8px 25px rgba(0,0,0,.18); }
  .rr-post-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
