/* ===========================================================================
   Reliable Brooklyn Water Damage Restoration — main.css
   Design school: graphite + clean coral (dark text on the bright accent — no
   muddy burnt-orange), Schibsted Grotesk + Public Sans. Deliberately off the
   family fingerprint (navy/teal base + warm-orange button). Tokens live in
   critical-css.html (:root).
   =========================================================================== */

:root{
  --font-mono:'Spline Sans Mono',ui-monospace,Menlo,Consolas,monospace;
  --shadow-cta:0 2px 0 var(--c-cta-deep),0 8px 18px rgba(190,23,22,.30),0 14px 34px rgba(19,48,74,.12);
  --hdr-h:74px;
  --util-h:34px;
}

/* paper-ish bubble texture used sparingly on light grounds */
.rb-texture{
  background-color:var(--c-sand);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
}

/* ---------- Buttons -------------------------------------------------------- */
.rb-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font-body);font-weight:700;font-size:1rem;line-height:1.1;
  padding:15px 26px;border-radius:var(--r-sm);border:0;cursor:pointer;
  text-decoration:none;white-space:nowrap;
  transition:transform .16s ease,box-shadow .16s ease,background-color .16s ease;
}
.rb-btn:focus-visible{outline:3px solid var(--c-teal);outline-offset:3px}
.rb-btn-call{background:var(--c-cta);color:var(--c-cta-text);box-shadow:var(--shadow-cta)}
.rb-btn-call:hover{background:var(--c-cta-deep);color:var(--c-cta-text);transform:translateY(-2px)}
.rb-btn-call:active{transform:translateY(0)}
.rb-btn-call svg{width:20px;height:20px;flex-shrink:0}
.rb-btn-ghost{background:transparent;color:var(--c-slate);border:2px solid var(--c-slate);box-shadow:none}
.rb-btn-ghost:hover{background:var(--c-slate);color:var(--c-sand);transform:translateY(-2px)}
.rb-btn-lg{padding:18px 32px;font-size:1.08rem}

/* ---------- Header -------------------------------------------------------- */
.rb-header{position:sticky;top:0;z-index:120;background:rgba(236,238,240,.86);
  backdrop-filter:saturate(1.4) blur(10px);-webkit-backdrop-filter:saturate(1.4) blur(10px);
  border-bottom:1px solid transparent;transition:border-color .2s ease,box-shadow .2s ease,background-color .2s ease}
.rb-header.scrolled{border-bottom-color:var(--c-border);box-shadow:var(--shadow-sm);background:rgba(236,238,240,.95)}
.rb-header-inner{display:flex;align-items:center;gap:24px;min-height:var(--hdr-h)}
.rb-logo{display:inline-flex;align-items:center;gap:12px;flex-shrink:0}
/* the shield path is inset ~7/44 of the viewBox from the SVG box left; pull it back
   so the VISIBLE shield aligns to the container grid edge like every other element */
.rb-mark{width:40px;height:40px;flex-shrink:0;margin-left:-6px}
.rb-logo-text{display:flex;flex-direction:column;line-height:1}
.rb-logo-word{font-family:var(--font-head);font-weight:700;font-size:1.5rem;color:var(--c-slate);letter-spacing:-.01em}
.rb-logo-sub{font-family:var(--font-body);font-weight:700;font-size:.75rem;letter-spacing:.11em;text-transform:uppercase;color:var(--c-teal-dark);margin-top:4px}
.rb-logo-top{display:flex;align-items:baseline;justify-content:space-between;gap:12px}
.rb-logo-geo{display:inline-flex;align-items:center;gap:4px;font-family:var(--font-body);font-weight:600;font-size:.72rem;color:var(--c-teal-dark)}
.rb-logo-geo svg{width:12px;height:12px;flex-shrink:0;stroke:currentColor;fill:none;transform:translateY(1px)}
.rb-footer .rb-logo-geo{color:var(--c-aqua)}
.rb-nav{display:flex;align-items:center;gap:2px;margin-left:auto;flex-shrink:0}
.rb-nav-link{font-weight:600;font-size:.95rem;color:var(--c-ink);padding:9px 11px;border-radius:8px;white-space:nowrap;transition:color .15s ease,background-color .15s ease}
.rb-nav-link:hover{color:var(--c-teal-dark);background:rgba(190,23,22,.08)}
.rb-nav-item{position:relative;display:flex;align-items:center}
.rb-nav-trigger{display:inline-flex;align-items:center;gap:5px;background:transparent;border:0;cursor:pointer;font-family:inherit}
.rb-nav-caret{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;transition:transform .18s ease}
.rb-nav-item:hover .rb-nav-caret,.rb-nav-trigger[aria-expanded="true"] .rb-nav-caret{transform:rotate(180deg)}
.rb-nav-item::after{content:"";position:absolute;top:100%;left:0;width:248px;height:12px}
.rb-dropdown{position:absolute;top:calc(100% + 10px);left:0;min-width:248px;background:#fff;
  border:1px solid var(--c-border);border-radius:var(--r-md);box-shadow:var(--shadow-md);padding:8px;
  display:flex;flex-direction:column;opacity:0;visibility:hidden;transform:translateY(-6px);
  transition:opacity .16s ease,transform .16s ease,visibility .16s ease;z-index:130}
.rb-nav-item:hover .rb-dropdown,.rb-nav-trigger[aria-expanded="true"] + .rb-dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.rb-dropdown a{padding:9px 12px;border-radius:8px;font-weight:600;font-size:.92rem;color:var(--c-ink);white-space:nowrap;transition:color .14s ease,background-color .14s ease}
.rb-dropdown a:hover,.rb-dropdown a:focus-visible{color:var(--c-teal-dark);background:rgba(190,23,22,.09)}
.rb-dropdown-areas{display:grid;grid-template-columns:1fr 1fr;gap:2px 6px;min-width:392px;left:auto;right:0}
.rb-header-right{display:flex;align-items:center;gap:16px;flex-shrink:0}
.rb-header-phone{display:inline-flex;align-items:center;gap:8px;font-weight:700;color:var(--c-slate);font-size:1rem}
.rb-header-phone svg{width:18px;height:18px;color:var(--c-teal)}
.rb-header-phone:hover{color:var(--c-teal-dark)}
.rb-header-cta{padding:11px 20px}
.rb-burger{display:none;flex-direction:column;justify-content:center;gap:5px;width:46px;height:42px;
  background:transparent;border:1px solid var(--c-border);border-radius:10px;cursor:pointer;margin-left:auto}
.rb-burger span{display:block;width:22px;height:2.5px;background:var(--c-slate);border-radius:2px;margin:0 auto;transition:transform .2s ease,opacity .2s ease}
.rb-burger.active span:nth-child(1){transform:translateY(7.5px) rotate(45deg)}
.rb-burger.active span:nth-child(2){opacity:0}
.rb-burger.active span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)}
.rb-nav-mobile{display:none;flex-direction:column;padding:8px 24px 22px;background:var(--c-sand);border-bottom:1px solid var(--c-border)}
.rb-nav-mobile a{padding:14px 6px;font-weight:600;font-size:1.05rem;color:var(--c-ink);border-bottom:1px solid var(--c-border)}
.rb-nav-mobile a:last-child{border-bottom:0}
.rb-mnav-call{color:var(--c-teal-dark)!important;font-weight:700!important}
.rb-mnav-acc{display:flex;align-items:center;justify-content:space-between;width:100%;text-align:left;
  padding:14px 6px;background:transparent;border:0;border-bottom:1px solid var(--c-border);
  font-family:inherit;font-weight:600;font-size:1.05rem;color:var(--c-ink);cursor:pointer}
.rb-mnav-caret{width:18px;height:18px;flex-shrink:0;fill:none;stroke:currentColor;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;transition:transform .18s ease}
.rb-mnav-acc[aria-expanded="true"] .rb-mnav-caret{transform:rotate(180deg)}
.rb-mnav-sub{display:none;flex-direction:column;padding:2px 0 8px 14px}
.rb-mnav-sub.open{display:flex}
.rb-mnav-sub a{padding:11px 6px;font-size:.98rem;font-weight:500;color:var(--c-ink-muted)}

/* ---------- Section scaffolding ------------------------------------------- */
.rb-section{padding:clamp(52px,7vw,84px) 0}
/* tighten the big stacked gaps around the compact bands (strip / creds / mid-CTA) */
.rb-strip + .rb-section{padding-top:clamp(38px,5vw,60px)}
.rb-section:has(+ .rb-midcta),.rb-section:has(+ .rb-creds),.rb-section:has(+ .rb-cta-band){padding-bottom:clamp(38px,5vw,58px)}
.rb-eyebrow{display:inline-block;font-family:var(--font-mono);font-size:.72rem;letter-spacing:.16em;
  text-transform:uppercase;color:var(--c-teal-dark);margin-bottom:14px}
.rb-section-head{max-width:680px;margin-bottom:46px}
.rb-section-head h2{font-size:clamp(1.8rem,3.6vw,2.7rem)}
.rb-section-head p{color:var(--c-ink-muted);font-size:1.08rem;margin-bottom:0}
.rb-section-alt{background:var(--c-band)}

/* ---------- Hero ---------------------------------------------------------- */
.rb-hero{position:relative;overflow:hidden;padding:clamp(36px,5vw,64px) 0 clamp(32px,4.5vw,52px)}
.rb-hero-grid{display:grid;grid-template-columns:1.06fr .94fr;gap:clamp(32px,5vw,64px);align-items:center}
.rb-hero h1{font-size:clamp(2.2rem,5vw,3.5rem);font-weight:800;letter-spacing:-.015em;margin-bottom:18px}
.rb-hero h1 em{font-style:normal;color:var(--c-teal-dark)}
.rb-hero-sub{font-size:clamp(1.05rem,1.6vw,1.22rem);color:var(--c-ink-muted);max-width:32em;margin-bottom:28px}
.rb-call-stack{display:flex;flex-direction:column;align-items:flex-start;gap:12px;margin-bottom:24px}
.rb-call-big{display:inline-flex;align-items:center;gap:14px;background:var(--c-cta);color:var(--c-cta-text);
  padding:16px 30px;border-radius:14px;box-shadow:var(--shadow-cta);text-decoration:none;
  transition:transform .16s ease,box-shadow .16s ease,background-color .16s ease}
.rb-call-big:hover{background:var(--c-cta-deep);color:var(--c-cta-text);transform:translateY(-2px)}
.rb-call-big:active{transform:translateY(0)}
.rb-call-big:focus-visible{outline:3px solid var(--c-teal);outline-offset:3px}
.rb-call-big svg{width:30px;height:30px;flex-shrink:0}
.rb-call-big .rb-call-lines{display:flex;flex-direction:column;line-height:1.05;text-align:center}
.rb-call-num{font-family:var(--font-body);font-weight:800;font-size:1.7rem;letter-spacing:.01em}
.rb-call-tag{font-family:var(--font-body);font-weight:600;font-size:.8rem;letter-spacing:.02em;text-transform:uppercase;margin-top:5px;opacity:.95}
.rb-call-note{font-weight:600;color:var(--c-teal-dark);font-size:.98rem}
.rb-call-note:hover{color:var(--c-teal)}
.rb-proof{display:flex;flex-wrap:wrap;align-items:center;gap:9px 16px;font-size:.93rem;color:var(--c-ink-muted)}
.rb-proof strong{color:var(--c-ink);font-weight:700}
.rb-proof-item{display:inline-flex;align-items:center;gap:7px}
.rb-proof-sep{width:1px;height:18px;background:var(--c-border)}
.rb-stars{display:inline-flex;align-items:center;gap:1px;vertical-align:middle}
.rb-star{width:16px;height:16px;fill:var(--c-marigold);flex-shrink:0}
.rb-g{width:17px;height:17px;flex-shrink:0}

/* bubble-port figure */
/* Direction A: real-work photo stage + floating honest "live" proof chips (connecteam-adapted) */
.rb-hero-stage{position:relative;justify-self:stretch;width:100%;max-width:560px;aspect-ratio:16/12;margin-left:auto}
.rb-stage-ph{position:relative;width:100%;height:100%;border-radius:24px;overflow:hidden;background:#EDEEF0;
  border:1px solid var(--c-border);box-shadow:var(--shadow-md);display:flex;flex-direction:column;align-items:center;
  justify-content:center;gap:12px;text-align:center;padding:24px;color:var(--c-teal-dark)}
.rb-stage-photo{position:absolute;inset:0;border-radius:24px;overflow:hidden;
  border:1px solid var(--c-border);box-shadow:var(--shadow-md);background:#EDEEF0;display:block}
.rb-stage-photo img{width:100%;height:100%;object-fit:cover;display:block}
.rb-stage-ph svg{width:54px;height:54px;opacity:.6}
.rb-stage-ph span{font-family:var(--font-mono);font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;color:var(--c-ink-muted);max-width:26ch;line-height:1.5}
.rb-livechip{position:absolute;display:inline-flex;align-items:center;gap:7px;background:var(--c-cloud);color:var(--c-ink);
  font-weight:600;font-size:.82rem;padding:8px 13px;border-radius:12px;box-shadow:var(--shadow-md);border:1px solid var(--c-border);white-space:nowrap}
.rb-livechip svg{width:14px;height:14px;fill:var(--c-marigold)}
.rb-livechip-tl{top:16px;left:-16px}
.rb-livechip-bl{bottom:20px;left:-12px}
.rb-livechip-br{bottom:16px;right:-16px}
.rb-dot-live{width:9px;height:9px;border-radius:50%;background:#BE1716;box-shadow:0 0 0 4px rgba(190,23,22,.18);flex-shrink:0;animation:rb-pulse 2s ease-in-out infinite}
@keyframes rb-pulse{0%,100%{opacity:1}50%{opacity:.5}}
.rb-port{position:relative;width:100%;height:100%;border-radius:50%;overflow:hidden;
  background:#EDEEF0;
  border:3px solid var(--c-aqua);box-shadow:var(--shadow-md)}
.rb-port picture{position:absolute;inset:0;display:block}
.rb-port img{width:100%;height:100%;object-fit:cover}
.rb-photo-ph{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:12px;text-align:center;padding:24px;color:var(--c-teal-dark)}
.rb-photo-ph svg{width:54px;height:54px;opacity:.7}
.rb-photo-ph span{font-family:var(--font-mono);font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;
  color:var(--c-ink-muted);max-width:20ch;line-height:1.5}
/* (hero bubble-dot accents removed — replaced by the photo stage + live chips) */

/* faint rising-bubble spine behind hero */
.rb-hero::before{content:"";position:absolute;left:51%;top:0;bottom:0;width:2px;
  background:repeating-linear-gradient(to top,transparent 0 18px,rgba(190,23,22,.18) 18px 20px);
  display:none}

/* ---------- Urgency strip ------------------------------------------------- */
.rb-strip{background:var(--c-band);border-top:1px solid var(--c-border);border-bottom:1px solid var(--c-border)}
.rb-strip .container{display:grid;grid-template-columns:repeat(4,1fr);gap:18px 24px;padding-top:22px;padding-bottom:22px}
.rb-strip-item{display:flex;align-items:center;gap:11px;font-size:.93rem;color:var(--c-ink)}
.rb-strip-item svg{width:22px;height:22px;color:var(--c-teal-dark);flex-shrink:0}
.rb-strip-item b{color:var(--c-slate);font-weight:700}
@media (max-width:760px){.rb-strip .container{grid-template-columns:repeat(2,1fr)}}
@media (max-width:440px){.rb-strip .container{grid-template-columns:1fr}}

/* ---------- Why Bubble ---------------------------------------------------- */
.rb-why-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(32px,5vw,60px);align-items:center}
.rb-why-list{list-style:none;margin:0;padding:0;display:grid;gap:18px}
.rb-why-list li{display:grid;grid-template-columns:auto 1fr;gap:16px;align-items:start}
.rb-why-ic{width:42px;height:42px;border-radius:12px;background:rgba(190,23,22,.12);
  display:flex;align-items:center;justify-content:center;flex-shrink:0}
.rb-why-ic svg{width:22px;height:22px;color:var(--c-teal-dark)}
.rb-why-list h3{font-size:1.12rem;margin-bottom:3px}
.rb-why-list p{margin-bottom:0;color:var(--c-ink-muted);font-size:.98rem}
.rb-why-figure{position:relative;aspect-ratio:4/5;max-width:380px;justify-self:center;width:100%}
.rb-why-figure .rb-port{border-radius:24px;border:1px solid var(--c-border)}

/* ---------- Services ------------------------------------------------------ */
.rb-svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.rb-svc-card{position:relative;display:flex;flex-direction:column;background:var(--c-cloud);
  border:1px solid var(--c-border);border-radius:var(--r-md);overflow:hidden;box-shadow:var(--shadow-sm);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.rb-svc-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--c-aqua)}
.rb-svc-port{position:relative;aspect-ratio:16/10;background:#EDEEF0;overflow:hidden;border-bottom:1px solid var(--c-border)}
.rb-svc-port img{width:100%;height:100%;object-fit:cover}
.rb-svc-port .rb-photo-ph{color:var(--c-teal-dark)}
.rb-svc-port .rb-photo-ph svg{width:40px;height:40px}
.rb-svc-body{padding:20px 22px 22px;display:flex;flex-direction:column;flex:1}
.rb-svc-body h3{font-size:1.22rem;margin-bottom:6px}
.rb-svc-body p{font-size:.96rem;color:var(--c-ink-muted);margin-bottom:16px}
.rb-svc-call{margin-top:auto;display:inline-flex;align-items:center;gap:8px;font-weight:700;
  color:var(--c-teal-dark);font-size:.95rem}
.rb-svc-card:hover .rb-svc-call{color:var(--c-teal)}
.rb-svc-call svg{width:16px;height:16px;transition:transform .18s ease}
.rb-svc-card:hover .rb-svc-call svg{transform:translateX(3px)}
.rb-svc-card .rb-stretch{position:absolute;inset:0;z-index:2}

/* ---------- Crew video block --------------------------------------------- */
.rb-video-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;max-width:880px;margin:0 auto}
.rb-video-card{margin:0}
.rb-video-frame{position:relative;border-radius:var(--r-md);overflow:hidden;box-shadow:var(--shadow-md);background:#000}
.rb-video-el{display:block;width:100%;aspect-ratio:9/16;object-fit:cover;background:#000;
  border:1px solid var(--c-border);border-radius:var(--r-md)}
.rb-video-el:focus-visible{outline:3px solid var(--c-cta);outline-offset:2px}
.rb-video-overlay{position:absolute;top:0;left:0;right:0;bottom:42px;z-index:2;display:grid;place-items:center;
  border:0;margin:0;padding:0;cursor:pointer;-webkit-appearance:none;appearance:none;
  background:linear-gradient(180deg,rgba(24,27,32,.16),rgba(24,27,32,.46));transition:background .25s ease}
.rb-video-overlay:focus-visible{outline:3px solid var(--c-cta);outline-offset:-3px}
.rb-video-play{width:62px;height:62px;border-radius:50%;background:var(--c-cta);display:grid;place-items:center;
  box-shadow:0 8px 22px rgba(24,27,32,.4),inset 0 -3px 0 rgba(0,0,0,.18);transition:transform .25s ease,background .25s ease}
.rb-video-overlay:hover .rb-video-play{transform:scale(1.08);background:var(--c-cta-deep)}
.rb-video-play svg{width:24px;height:24px;fill:var(--c-cta-text);margin-left:3px}
.rb-video-frame.is-playing .rb-video-overlay{background:transparent}
.rb-video-frame.is-playing .rb-video-play{opacity:0;transform:scale(.7)}
.rb-video-cap{margin-top:11px;font-size:.92rem;color:var(--c-ink-muted);font-weight:500;
  display:flex;align-items:flex-start;gap:9px;line-height:1.42}
.rb-video-cap::before{content:"";width:14px;height:14px;flex-shrink:0;margin-top:3px;
  background:var(--c-cta);border-radius:3px;clip-path:polygon(22% 14%,22% 86%,86% 50%)}
@media(max-width:760px){.rb-video-grid{grid-template-columns:repeat(2,1fr)}}
/* Phones: a classic swipeable slider — each card is 80% wide so the next one
   peeks at the right edge, signalling the row scrolls; scroll-snap for clean stops. */
@media(max-width:620px){
  .rb-video-grid{display:flex;grid-template-columns:none;max-width:none;overflow-x:auto;overflow-y:hidden;
    scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;gap:14px;padding:2px 0 14px;
    scrollbar-width:none;scroll-padding-left:0}
  .rb-video-grid::-webkit-scrollbar{display:none}
  .rb-video-grid{align-items:flex-start}
  .rb-video-card{flex:0 0 80%;scroll-snap-align:start}
}

/* ---------- How it works -------------------------------------------------- */
.rb-how{background:var(--c-band);position:relative}
.rb-how .rb-eyebrow{color:var(--c-teal-dark)}
.rb-how h2{color:var(--c-slate)}
.rb-how .rb-section-head p{color:var(--c-ink-muted)}
.rb-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:8px}
.rb-step{position:relative;padding:24px 20px;background:var(--c-cloud);
  border:1px solid var(--c-border);border-radius:var(--r-md);box-shadow:var(--shadow-sm)}
.rb-step-n{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border-radius:50%;
  background:var(--c-cta);color:var(--c-cta-text);font-family:var(--font-head);font-weight:700;font-size:1.3rem;margin-bottom:14px}
.rb-step h3{color:var(--c-slate);font-size:1.12rem;margin-bottom:6px}
.rb-step p{color:var(--c-ink-muted);font-size:.95rem;margin-bottom:0}

/* ---------- Reviews ------------------------------------------------------- */
.rb-reviews .rb-section-head{max-width:760px}
.rb-agg{display:flex;flex-wrap:wrap;align-items:center;gap:18px 30px;padding:22px 26px;margin-bottom:34px;
  background:var(--c-cloud);border:1px solid var(--c-border);border-radius:var(--r-md);box-shadow:var(--shadow-sm)}
.rb-rating-ring{display:flex;flex-direction:column;align-items:center;justify-content:center;flex-shrink:0;
  width:96px;height:96px;border-radius:50%;border:3px solid var(--c-teal);background:rgba(190,23,22,.06)}
.rb-rating-ring b{font-family:var(--font-head);font-size:2rem;font-weight:700;color:var(--c-slate);line-height:1}
.rb-rating-ring span{font-family:var(--font-mono);font-size:.58rem;letter-spacing:.1em;text-transform:uppercase;color:var(--c-ink-muted);margin-top:4px}
.rb-agg-list{display:flex;flex-wrap:wrap;gap:14px 28px}
.rb-agg-item{display:flex;flex-direction:column;gap:2px}
.rb-agg-item .rb-agg-plat{font-weight:700;color:var(--c-ink);font-size:.95rem}
.rb-agg-item .rb-agg-meta{font-size:.86rem;color:var(--c-ink-muted)}
.rb-review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.rb-review-card{display:flex;flex-direction:column;gap:12px;background:var(--c-cloud);border:1px solid var(--c-border);
  border-radius:var(--r-md);padding:22px 22px 24px;box-shadow:var(--shadow-sm)}
.rb-review-card .rb-stars{font-size:1rem}
.rb-review-card p{font-size:.97rem;color:var(--c-ink);margin-bottom:0}
.rb-reviewer{display:flex;align-items:center;gap:12px;margin-top:auto}
.rb-avatar{width:42px;height:42px;border-radius:50%;flex-shrink:0;background:var(--c-aqua);
  display:flex;align-items:center;justify-content:center;font-weight:700;color:var(--c-slate);font-family:var(--font-head)}
.rb-reviewer-meta{display:flex;flex-direction:column;line-height:1.25}
.rb-reviewer-meta b{font-size:.95rem;color:var(--c-ink)}
.rb-reviewer-meta span{font-size:.82rem;color:var(--c-ink-muted)}
.rb-verified{display:inline-flex;align-items:center;gap:4px;font-size:.78rem;color:var(--c-teal-dark);font-weight:600}
.rb-verified svg{width:13px;height:13px}
.rb-reviews-note{margin-top:18px;font-size:.82rem;color:var(--c-ink-muted);font-style:italic}
.rb-grating{display:flex;flex-direction:column;align-items:center;text-align:center;gap:9px}
.rb-grating-g{width:38px;height:38px}
.rb-grating h2{font-size:clamp(1.6rem,3vw,2.2rem);margin:2px 0 0}
.rb-grating-stars{display:inline-flex;gap:4px}
.rb-grating-stars .rb-star{width:27px;height:27px}
.rb-grating-score{margin:0;font-size:1.05rem;color:var(--c-slate);font-weight:600}
.rb-grating-score strong{font-weight:800;font-size:1.15rem}
.rb-grating-note{max-width:48ch;color:var(--c-ink-muted);margin:4px 0 0}
.rb-star{fill:#FBBC05;display:block}
/* Hero Google rating badge (first-screen trust signal) */
.rb-grbadge{display:inline-flex;align-items:center;gap:10px;padding:8px 15px;margin-top:2px;background:#fff;
  border:1px solid var(--c-border);border-radius:999px;box-shadow:var(--shadow-sm)}
.rb-grbadge-g{width:20px;height:20px;flex-shrink:0}
.rb-grbadge-stars{display:inline-flex;gap:2px}
.rb-grbadge-stars .rb-star{width:16px;height:16px}
.rb-grbadge-txt{font-size:.92rem;color:var(--c-slate);font-weight:600;white-space:nowrap}
.rb-grbadge-txt strong{font-weight:800}

/* ---------- Credentials / certification badges --------------------------- */
.rb-creds{border-top:1px solid var(--c-border);border-bottom:1px solid var(--c-border);background:var(--c-band)}
.rb-creds .container{display:flex;flex-direction:column;align-items:center;gap:22px;
  padding-top:38px;padding-bottom:38px}
.rb-creds-label{font-family:var(--font-mono);font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--c-ink-muted);margin:0;text-align:center}
.rb-creds-logos{display:grid;grid-template-columns:1fr 1fr 1fr 1.6fr;align-items:center;justify-items:center;
  gap:20px 26px;width:100%;max-width:640px;margin:0 auto}
.rb-creds-logos picture{display:flex;align-items:center;justify-content:center;width:100%;height:100%}
.rb-creds-logos img{max-height:88px;max-width:100%;height:auto;width:auto;object-fit:contain;display:block}
@media (max-width:560px){.rb-creds-logos{gap:12px 7px;max-width:none}.rb-creds-logos img{max-height:60px}}
.rb-creds-inline{margin:1.7em 0 .5em;padding:26px 24px;background:var(--c-band);border:1px solid var(--c-border);
  border-radius:var(--r-md);display:flex;flex-direction:column;align-items:center;gap:16px}
.rb-creds-inline .rb-creds-logos img{max-height:76px}
@media (max-width:560px){.rb-creds-inline .rb-creds-logos img{max-height:55px}}

/* ---------- Contact + map ------------------------------------------------- */
.rb-area-chips{display:flex;flex-wrap:wrap;gap:8px 10px;list-style:none;margin:18px 0 0;padding:0}
.rb-area-chips li{font-size:.88rem;font-weight:600;color:var(--c-teal-dark);background:rgba(190,23,22,.08);border:1px solid var(--c-border);border-radius:999px;padding:6px 13px}
.rb-area-chips a{color:inherit}
.rb-area-chips li:has(a){padding:0}
.rb-area-chips li a{display:block;padding:6px 13px;border-radius:999px}
.rb-area-chips li:has(a):hover{border-color:var(--c-aqua);background:rgba(190,23,22,.14)}
.rb-contact-grid{display:grid;grid-template-columns:1fr 1.05fr;gap:clamp(28px,4vw,48px);align-items:start}
.rb-contact-info{overflow-wrap:anywhere}
.rb-contact-info h2{font-size:clamp(1.7rem,3vw,2.4rem)}
.rb-nap-rows{border:1px solid var(--c-border);border-radius:var(--r-md);overflow:hidden;margin:22px 0;box-shadow:var(--shadow-sm)}
.rb-nap-row{display:flex;align-items:flex-start;gap:14px;padding:15px 18px;background:var(--c-cloud);border-bottom:1px solid var(--c-border);font-size:.96rem}
.rb-nap-row:last-child{border-bottom:0}
.rb-nap-row svg{width:19px;height:19px;color:var(--c-teal);flex-shrink:0;margin-top:2px}
.rb-nap-row .rb-nap-label{font-weight:700;color:var(--c-ink);min-width:64px;flex-shrink:0}
.rb-nap-row .rb-nap-val{color:var(--c-ink-muted);min-width:0;overflow-wrap:anywhere}
.rb-nap-row .rb-nap-val a{color:var(--c-teal-dark);font-weight:700}
.rb-contact-cta{display:flex;flex-wrap:wrap;gap:12px;align-items:center}
.rb-contact-note{margin-top:18px;color:var(--c-ink-muted);font-size:.95rem;line-height:1.55;max-width:48ch}
.rb-form{display:grid;gap:12px;margin-top:20px;background:var(--c-cloud);border:1px solid var(--c-border);
  border-radius:var(--r-md);padding:20px;box-shadow:var(--shadow-sm)}
.rb-form label{font-size:.82rem;font-weight:600;color:var(--c-ink);display:block;margin-bottom:5px}
.rb-form input,.rb-form textarea{width:100%;font-family:var(--font-body);font-size:.97rem;color:var(--c-ink);
  background:var(--c-sand);border:1px solid var(--c-border);border-radius:10px;padding:11px 13px}
.rb-form input:focus,.rb-form textarea:focus{outline:2px solid var(--c-teal);outline-offset:1px;background:#fff}
.rb-form textarea{min-height:96px;resize:vertical}
.rb-form .rb-form-note{font-size:.8rem;color:var(--c-ink-muted);margin:0}
.rb-map-wrap{display:flex;flex-direction:column}
.rb-map-h{font-size:1.3rem;color:var(--c-slate);margin:0 0 8px;line-height:1.25}
.rb-map-intro{font-size:.96rem;color:var(--c-ink-muted);margin:0 0 18px;line-height:1.55}
.rb-map-frame{border-radius:var(--r-md) var(--r-md) 0 0;overflow:hidden;border:1px solid var(--c-border);border-bottom:0;box-shadow:var(--shadow-md);background:var(--c-band);min-height:280px}
.rb-map-frame iframe{display:block;width:100%;height:360px;border:0}
.rb-map-cap{background:var(--c-slate);color:#fff;font-family:var(--font-mono);font-size:.68rem;font-weight:500;
  letter-spacing:.06em;text-transform:uppercase;padding:11px 15px;margin:0;border-radius:0 0 var(--r-md) var(--r-md);
  display:flex;flex-wrap:wrap;gap:6px 12px;align-items:center;justify-content:space-between}
.rb-map-link{color:var(--c-aqua);text-decoration:underline;text-underline-offset:2px;white-space:nowrap;font-weight:600}
.rb-map-link:hover{color:#fff}
.rb-map-badges{display:flex;flex-wrap:wrap;gap:10px 18px;margin-top:16px}
.rb-map-badges .rb-cred{font-size:.88rem}

/* ---------- SEO long-form prose (home tail) ------------------------------ */
.rb-longform{background:var(--c-cloud)}
.rb-prose{max-width:72ch;overflow-wrap:break-word}
/* The contact page's 2-col grid is a wide layout, not a reading column — let it
   use the full container width (otherwise it sits lopsided in the 72ch prose). */
.rb-prose:has(.rb-contact-grid){max-width:none}
.rb-prose h2{font-size:clamp(1.5rem,2.6vw,2rem);margin-top:1.4em}
.rb-prose h2:first-child{margin-top:0}
.rb-prose h3{font-size:1.2rem;margin-top:1.2em}
.rb-prose p,.rb-prose li{color:var(--c-ink);font-size:1.02rem}
.rb-prose ul{padding-left:1.2em}
.rb-prose li{margin-bottom:.4em}
.rb-prose .rb-kicker{color:var(--c-teal-dark)}
.rb-prose .rb-map-cap,.rb-prose .rb-map-cap span{color:#fff}
.rb-prose .rb-map-cap,.rb-prose .rb-map-cap span,.rb-prose .rb-map-cap a{font-size:.68rem}

/* ---------- CTA band (legal pages) --------------------------------------- */
.rb-cta-band{background:var(--c-slate);color:var(--c-sand)}
.rb-cta-band-inner{text-align:center;padding-top:clamp(44px,6vw,72px);padding-bottom:clamp(44px,6vw,72px)}
.rb-cta-band h2{color:#fff;font-size:clamp(1.6rem,3vw,2.3rem)}
.rb-cta-band p{color:rgba(236,238,240,.82);max-width:46ch;margin:0 auto 24px}
.rb-cta-band p a{color:#fff;text-decoration:underline;text-underline-offset:3px}
.rb-cta-band p a:hover{text-decoration-thickness:2px}
.rb-cta-band p a:focus-visible{outline:2px solid #fff;outline-offset:2px;border-radius:3px}

/* ---------- Mid-page CTA (teal band, distinct from the slate bands) ------- */
.rb-midcta{background:var(--c-cloud);text-align:center;border-top:1px solid var(--c-border);border-bottom:1px solid var(--c-border)}
.rb-midcta .container{padding-top:clamp(34px,4.5vw,54px);padding-bottom:clamp(34px,4.5vw,54px)}
.rb-midcta h2{color:var(--c-slate);font-size:clamp(1.5rem,3vw,2.15rem);margin-bottom:8px}
.rb-midcta p{color:var(--c-ink-muted);max-width:50ch;margin:0 auto 22px}

/* ---------- Info hero / prose / sitemap (legal pages) -------------------- */
.rb-info-hero{background:var(--c-slate);color:var(--c-sand);padding:clamp(48px,7vw,86px) 0 clamp(34px,5vw,56px)}
.rb-info-hero h1{color:#fff;font-size:clamp(2rem,4vw,3rem)}
.rb-info-hero p{color:rgba(236,238,240,.82);max-width:60ch;margin-bottom:0}
.rb-info-hero a{color:var(--c-aqua)}
.rb-kicker{display:inline-block;font-family:var(--font-mono);font-size:.72rem;letter-spacing:.16em;
  text-transform:uppercase;color:var(--c-aqua);margin-bottom:12px}
.rb-sitemap-group{margin-bottom:34px}
.rb-sitemap-group h2{font-size:1.4rem;margin-bottom:14px}
.rb-sitemap-list{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.rb-sitemap-cols{grid-template-columns:repeat(auto-fill,minmax(240px,1fr))}
.rb-sitemap-list a{font-weight:600}

/* ---------- Footer -------------------------------------------------------- */
.rb-footer{background:var(--c-slate);color:rgba(236,238,240,.8);padding:clamp(46px,6vw,72px) 0 28px}
.rb-footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:36px}
.rb-footer-brand .rb-logo{margin-bottom:14px}
.rb-footer .rb-logo-word{color:#fff}
.rb-footer .rb-logo-sub{color:var(--c-aqua)}
.rb-footer-brand p{font-size:.94rem;color:rgba(236,238,240,.72);max-width:36ch}
.rb-footer-nap{font-style:normal;font-size:.92rem;color:rgba(236,238,240,.8);line-height:1.9;margin-top:12px}
.rb-footer-nap a{color:var(--c-aqua)}
.rb-footer-col h4{font-family:var(--font-mono);font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--c-aqua);margin:4px 0 14px}
.rb-footer-col a,.rb-footer-col .rb-disclaimer-btn{display:block;color:rgba(236,238,240,.8);font-size:.94rem;
  padding:5px 0;background:none;border:0;text-align:left;cursor:pointer;font-family:inherit}
.rb-footer-col a:hover,.rb-footer-col .rb-disclaimer-btn:hover{color:#fff}
.rb-footer-bottom{display:flex;flex-wrap:wrap;gap:10px 20px;justify-content:space-between;align-items:center;
  margin-top:38px;padding-top:22px;border-top:1px solid rgba(255,255,255,.2);font-size:.86rem;color:rgba(236,238,240,.65)}
.rb-footer-legal{display:flex;gap:18px}
.rb-footer-legal a{color:rgba(236,238,240,.7)}
.rb-footer-legal a:hover{color:#fff}

/* ---------- Mobile call bar (the single pinned mobile CTA) ---------------- */
.rb-callbar{display:none;position:fixed;left:0;right:0;bottom:0;z-index:130;
  background:var(--c-cta);box-shadow:0 -3px 14px rgba(19,48,74,.16)}
.rb-callbar a{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;
  color:var(--c-cta-text);font-weight:800;font-size:1.06rem;letter-spacing:.01em;
  padding:16px;text-decoration:none}
.rb-callbar a svg{width:20px;height:20px;flex-shrink:0}
.rb-callbar a:active{background:var(--c-cta-deep)}

/* ---------- Disclaimer modal --------------------------------------------- */
.rb-modal-overlay{position:fixed;inset:0;z-index:300;display:none;align-items:center;justify-content:center;
  padding:20px;background:rgba(24,27,32,.55)}
.rb-modal-overlay.active{display:flex}
.rb-modal-box{position:relative;background:var(--c-cloud);border-radius:var(--r-md);max-width:620px;width:100%;
  max-height:85vh;overflow:auto;padding:30px 32px;box-shadow:var(--shadow-md)}
.rb-modal-close{position:absolute;top:12px;right:14px;width:38px;height:38px;border:0;background:var(--c-sand);
  border-radius:50%;font-size:1.4rem;line-height:1;cursor:pointer;color:var(--c-slate)}
.rb-modal-close:hover{background:var(--c-border)}
.rb-modal-content h2{font-size:1.4rem;margin-bottom:.5em}
.rb-modal-content p{font-size:.95rem;color:var(--c-ink-muted)}

/* ---------- Inner pages: breadcrumb, article column, FAQ, links ----------- */
.rb-crumbs{display:flex;flex-wrap:wrap;align-items:center;gap:7px;font-size:.82rem;font-weight:600;
  color:var(--c-ink-muted);margin-bottom:18px}
.rb-crumbs a{color:var(--c-teal-dark)}
.rb-crumbs a:hover{color:var(--c-teal)}
.rb-crumbs svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2.2;opacity:.6;flex-shrink:0}
.rb-crumbs [aria-current]{color:var(--c-ink)}

/* service-page body reading column — LEFT-aligned to the container (matches the hero/home grid,
   not centered, so the body's left edge lines up with the H1 above it) */
.rb-article{max-width:880px;margin:0}
.rb-article > .rb-prose{max-width:none}
.rb-article h2{font-size:clamp(1.5rem,2.8vw,2.05rem);margin-top:1.5em}
.rb-article h2:first-child{margin-top:0}
.rb-article h3{font-size:1.18rem;margin-top:1.3em}
.rb-article p,.rb-article li{color:var(--c-ink);font-size:1.04rem}

.rb-lead{font-size:1.18rem;line-height:1.6;color:var(--c-ink)!important}
.rb-article .rb-lead strong{color:var(--c-slate)}

/* numbered process steps inside a reading column.
   The number is absolutely positioned (NOT a grid cell) so the <strong> title + <p> body flow
   naturally in the padded column. (A grid li would scatter ::before + strong + p across cells —
   the shattered-columns bug.) */
.rb-proclist{counter-reset:bs;list-style:none;margin:22px 0 26px;padding:0;display:grid;gap:20px}
.rb-proclist li{counter-increment:bs;position:relative;padding:6px 0 0 58px;min-height:42px}
.rb-proclist li::before{content:counter(bs);position:absolute;left:0;top:0;
  display:flex;align-items:center;justify-content:center;
  width:40px;height:40px;border-radius:50%;background:var(--c-cta);color:var(--c-cta-text);font-family:var(--font-head);
  font-weight:700;font-size:1.08rem;line-height:1}
.rb-proclist li strong{display:block;color:var(--c-slate);font-family:var(--font-head);font-weight:600;
  font-size:1.1rem;line-height:1.25;margin-bottom:3px}
.rb-proclist li p{margin:0;color:var(--c-ink-muted);font-size:1rem}

/* checkmark "what we handle" list */
.rb-checks{list-style:none;margin:18px 0 22px;padding:0;display:grid;gap:13px}
.rb-checks li{display:grid;grid-template-columns:auto 1fr;gap:13px;align-items:start;font-size:1.02rem;color:var(--c-ink)}
.rb-checks li > svg{width:22px;height:22px;color:var(--c-teal);flex-shrink:0;margin-top:3px}
.rb-checks li strong{color:var(--c-slate)}

/* FAQ — prose answers in a light accordion (no FAQPage schema, content stays) */
.rb-faq{display:grid;gap:12px;margin:18px 0 6px}
.rb-faq details{background:var(--c-cloud);border:1px solid var(--c-border);border-radius:var(--r-sm);
  box-shadow:var(--shadow-sm);overflow:hidden}
.rb-faq summary{display:flex;align-items:center;justify-content:space-between;gap:14px;cursor:pointer;
  padding:16px 18px;font-family:var(--font-head);font-weight:600;font-size:1.06rem;color:var(--c-slate);list-style:none}
.rb-faq summary::-webkit-details-marker{display:none}
.rb-faq summary::after{content:"";width:11px;height:11px;flex-shrink:0;border-right:2.4px solid var(--c-teal-dark);
  border-bottom:2.4px solid var(--c-teal-dark);transform:rotate(45deg) translateY(-2px);transition:transform .2s ease}
.rb-faq details[open] summary::after{transform:rotate(-135deg) translateY(0)}
.rb-faq summary:hover{color:var(--c-teal-dark)}
.rb-faq details[open] summary{border-bottom:1px solid var(--c-border)}
.rb-faq-a{padding:14px 18px 18px}
.rb-faq-a p{margin-bottom:.7em;color:var(--c-ink-muted);font-size:1rem}
.rb-faq-a p:last-child{margin-bottom:0}

/* city-page service grid — text-forward link cards to the service pages
   (deliberately NOT icon-tile cards — the home uses photo cards, inner pages lead
   with the service NAME under a short rule; avoids the "icon-card grid" AI tell) */
.rb-linkgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
#city-svc-h{scroll-margin-top:90px}
.rb-linkcard{position:relative;display:flex;flex-direction:column;gap:8px;background:var(--c-cloud);
  border:1px solid var(--c-border);border-radius:var(--r-md);padding:24px 24px 22px;box-shadow:var(--shadow-sm);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.rb-linkcard:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:var(--c-aqua)}
.rb-linkcard h3{font-size:1.16rem;margin:0;color:var(--c-slate)}
.rb-linkcard h3::before{content:"";display:block;width:32px;height:3px;border-radius:2px;
  background:var(--c-aqua);margin-bottom:13px}
.rb-linkcard p{font-size:.95rem;color:var(--c-ink-muted);margin:0}

/* neighborhood / ZIP chips on city pages (reuses the area-chip look, slate accent) */
.rb-zips{display:flex;flex-wrap:wrap;gap:8px 10px;margin:14px 0 6px}
.rb-zip{font-family:var(--font-mono);font-size:.82rem;font-weight:500;color:var(--c-slate);
  background:var(--c-band);border:1px solid var(--c-border);border-radius:8px;padding:5px 11px}
.rb-zip-more{color:var(--c-ink-muted);align-self:center;font-size:.86rem}
.rb-morelinks{margin:24px 0 0;font-size:.97rem;color:var(--c-ink-muted)}
.rb-morelinks a{font-weight:600}

/* bottom SEO prose on service pages — the secondary, de-emphasized "read more" tail
   (keeps depth for search without leading the page with an essay; the page LEADS scannable) */
.rb-seo-tail{margin-top:3em;padding-top:1.6em;border-top:1px solid var(--c-border)}
.rb-seo-tail h2{font-size:1.22rem!important;color:var(--c-ink-muted)!important;margin-top:0!important}
.rb-seo-tail p,.rb-seo-tail li{font-size:.95rem;color:var(--c-ink-muted)}
.rb-seo-tail p{margin-bottom:.8em}

/* short scannable benefit blurb under an H2 (offer-led, not prose) */
.rb-blurb{font-size:1.04rem;color:var(--c-ink-muted);margin:0 0 18px;max-width:60ch}

/* related-services block on service pages */
.rb-related{margin:2.6em 0 .5em}
.rb-related .rb-linkgrid{gap:16px}
.rb-related-h{font-size:1.2rem;margin:0 0 16px!important;color:var(--c-slate)}
.rb-related .rb-linkcard h3{font-size:1.05rem}

/* Responsive ---------------------------------------------------- */
@media (max-width:980px){
  .rb-linkgrid{grid-template-columns:repeat(2,1fr)}
  .rb-svc-grid{grid-template-columns:repeat(2,1fr)}
  .rb-review-grid{grid-template-columns:repeat(2,1fr)}
  .rb-steps{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:900px){
  .rb-header{position:static;backdrop-filter:none;-webkit-backdrop-filter:none}
  .rb-nav,.rb-header-right{display:none}
  .rb-burger{display:flex}
  .rb-nav-mobile.active{display:flex;position:fixed;left:0;right:0;top:calc(var(--util-h) + var(--hdr-h));bottom:0;z-index:118;
    background:var(--c-sand);overflow-y:auto;-webkit-overflow-scrolling:touch;padding:8px 24px 32px;border-bottom:0}
  .rb-callbar{display:block}
  /* clearance for the fixed call bar lives on the FOOTER so its dark bg fills behind the bar
     (no light body-padding strip showing above the bar at the very bottom) */
  .rb-footer{padding-bottom:88px}
  .rb-hero-grid{grid-template-columns:1fr;gap:22px}
  .rb-call-stack{margin-bottom:10px}
  /* full-bleed hero photo on mobile: 100vw, no rounding (badges stay inset) */
  /* H1/copy first, photo UNDER it on mobile (no order flip) — grid gap handles copy→photo space, no extra stage margin-top */
  .rb-hero-stage{max-width:none;aspect-ratio:16/11;width:100vw;margin:0;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}
  .rb-stage-photo,.rb-stage-ph{border-radius:0;border-left:0;border-right:0}
  .rb-stage-photo{box-shadow:none}
  .rb-livechip{font-size:.76rem;padding:6px 10px}
  .rb-livechip-tl{left:14px;top:14px}
  .rb-livechip-bl{left:14px;bottom:14px}
  .rb-livechip-br{right:14px;bottom:14px}
  .rb-why-grid{grid-template-columns:1fr;gap:34px}
  .rb-why-figure{order:1}
  .rb-contact-grid{grid-template-columns:1fr}
}
@media (max-width:640px){
  body{font-size:16px}
  .rb-svc-grid,.rb-review-grid,.rb-steps,.rb-linkgrid{grid-template-columns:1fr}
  .rb-call-big{width:100%;justify-content:center}
  /* full-width mobile button: a right spacer == the left icon centres the TEXT in the button.
     (desktop button is auto-width and hugs its content, so it needs no spacer there.) */
  .rb-call-big::after{content:"";width:30px;flex:0 0 auto}
  .rb-call-stack{align-items:stretch}
  .rb-agg{flex-direction:column;align-items:flex-start}
  .rb-footer-grid{grid-template-columns:1fr 1fr}
  .rb-footer-brand{grid-column:1/-1}
  .rb-hero-sub{display:none}
  /* info-page tables: never overflow the viewport — a too-wide (3-col) table
     scrolls horizontally inside its own box. Cells keep a readable min width so
     columns can't be squeezed into mid-word breaks or edge-sliced text. */
  .rb-table{display:block;overflow-x:auto;-webkit-overflow-scrolling:touch;font-size:.85rem}
  .rb-table th,.rb-table td{padding:9px 10px;min-width:108px;white-space:normal}
}
@media (max-width:430px){
  .rb-footer-grid{grid-template-columns:1fr}
}


/* ---------- ls17 skin overrides ---------- */
.rb-logo-word{font-size:1.16rem;letter-spacing:-.01em}
.rb-logo-sub{font-size:.66rem;letter-spacing:.13em}
.rb-footer .rb-logo-word{font-size:1.16rem}
.rb-hero h1 em{font-weight:800}
.rb-header-cta{padding:11px 18px}

/* top utility bar — makes the geo obvious on the first screen (scrolls above the sticky header) */
.rb-util{background:var(--c-slate);color:rgba(236,238,240,.92)}
.rb-util-in{display:flex;align-items:center;justify-content:space-between;gap:14px;min-height:34px;
  padding-top:6px;padding-bottom:6px;font-size:.8rem;font-weight:600}
.rb-util-geo{display:inline-flex;align-items:center;gap:7px}
.rb-util-geo svg{width:14px;height:14px;stroke:var(--c-cta);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.rb-util-hrs{display:inline-flex;align-items:center;gap:7px;color:rgba(236,238,240,.78);white-space:nowrap;flex-shrink:0}
.rb-util-dot{width:7px;height:7px;border-radius:50%;background:var(--c-cta);flex-shrink:0}
@media (max-width:540px){.rb-util-hrs{display:none}.rb-util-geo{font-size:.78rem}}

/* tables + figures (info pages) */
.rb-prose .rb-table,.rb-table{width:100%;border-collapse:collapse;margin:18px 0 8px;font-size:.98rem}
.rb-table th,.rb-table td{text-align:left;padding:12px 14px;border-bottom:1px solid var(--c-border)}
.rb-table thead th{background:var(--c-slate);color:#fff;font-family:var(--font-head);font-weight:700;font-size:.92rem}
.rb-table tbody tr:nth-child(even){background:var(--c-band)}
.rb-table td:last-child{font-weight:700;color:var(--c-slate)}
/* prose ordered lists must NOT inherit the home page's 4-column step GRID
   (.rb-steps means a card grid on home, a numbered <ol> inside article prose) */
.rb-prose ol.rb-steps,.rb-article ol.rb-steps{display:block;grid-template-columns:none;gap:0;
  margin:8px 0 1em;padding-left:1.3em;list-style:decimal}
.rb-prose ol.rb-steps li,.rb-article ol.rb-steps li{margin-bottom:.5em;padding-left:.2em}
.rb-table-note{font-size:.88rem;color:var(--c-ink-muted);margin:2px 0 1.4em}
.rb-figure{margin:1.6em 0;border-radius:var(--r-md);overflow:hidden;border:1px solid var(--c-border);box-shadow:var(--shadow-sm)}
.rb-figure img{width:100%;display:block}
.rb-figure figcaption{padding:11px 16px;font-size:.88rem;color:var(--c-ink-muted);background:var(--c-band);margin:0}

/* breadcrumbs on the dark info-hero */
.rb-info-hero .rb-crumbs{color:rgba(236,238,240,.72)}
.rb-info-hero .rb-crumbs a{color:#fff}
.rb-info-hero .rb-crumbs a:hover{color:#fff;text-decoration:underline}
.rb-info-hero .rb-crumbs [aria-current]{color:rgba(236,238,240,.85)}
.rb-info-hero .rb-crumbs svg{color:rgba(236,238,240,.55)}

/* ---------- ls17 anti-duplication divergence (cosmetic, safe) ---------- */
.rb-step-n{border-radius:11px}
.rb-proclist li::before{border-radius:11px}
.rb-eyebrow::before{content:"";display:inline-block;width:20px;height:2px;background:var(--c-cta);vertical-align:middle;margin-right:10px;border-radius:2px}
.rb-strip{background:#fff;border-top:2px solid var(--c-cta)}
.rb-svc-card:hover{border-color:var(--c-cta)}
.rb-linkcard:hover{border-color:var(--c-cta)}
.rb-why-ic{border-radius:11px}
.rb-avatar{border-radius:12px}
