:root {
  --bg: #fafaf8;
  --paper: #fff;
  --ink: #0a0a0a;
  --fg: #1a1a1a;
  --grey: #f3f1ee;
  --grey-2: #e8e5e0;
  --accent: #e85c02;
  --accent-hover: #cf5202;
  --accent-fg: #fff;
  --accent-soft: #fff1e8;
  --font: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --radius: 1rem;
  --shadow: 0 0 0 1px rgb(10 10 10 / 0.06), 0 8px 24px -12px rgb(10 10 10 / 0.12);
  --cta-shadow: 0 8px 20px -8px rgb(232 92 2 / 0.55);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.rdb-body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  line-height: 1.55;
  padding-bottom: 5.5rem;
}
@media (min-width: 768px) { body.rdb-body { padding-bottom: 0; } }
img, video { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--display);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(1.45rem, 1.05rem + 1.6vw, 2.35rem); }
h2 { font-size: clamp(1.25rem, 1.02rem + 1vw, 1.85rem); }
.rdb-skip {
  position: absolute; left: -999px; top: 0;
}
.rdb-skip:focus { left: 1rem; top: 1rem; z-index: 90; background: var(--accent); color: #fff; padding: .5rem 1rem; border-radius: 999px; }
.rdb-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.rdb-wrap { width: min(80rem, calc(100% - 2rem)); margin-inline: auto; }
.rdb-wrap--narrow { width: min(48rem, calc(100% - 2rem)); }
.rdb-kicker {
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.rdb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  height: 3rem; padding: 0 1.4rem; border: 0; border-radius: 999px;
  background: var(--accent); color: var(--accent-fg);
  font-family: var(--display); font-weight: 600; text-decoration: none; cursor: pointer;
  box-shadow: var(--cta-shadow);
}
.rdb-btn:hover { background: var(--accent-hover); }
.rdb-btn--sm { height: 2.5rem; padding: 0 1rem; font-size: .875rem; }
.rdb-btn--xl { height: 3.5rem; padding: 0 1.6rem; }
.rdb-btn--outline { background: var(--paper); color: var(--ink); border: 1px solid var(--grey-2); box-shadow: none; }
.rdb-btn--dark { background: var(--ink); color: var(--paper); box-shadow: none; }
.rdb-btn--light { background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.rdb-btn--block { width: 100%; }
.rdb-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.rdb-icon-btn {
  width: 2.5rem; height: 2.5rem; border: 0; border-radius: 999px;
  background: var(--grey); color: var(--ink); display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; cursor: pointer; font-size: 1.1rem;
}

.rdb-header { position: sticky; top: 0; z-index: 50; }
.rdb-header__top { background: rgb(255 255 255 / .95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--grey-2); }
.rdb-header__row { display: flex; align-items: center; gap: .75rem; height: 3.5rem; }
.rdb-logo img { height: 2rem; width: auto; }
.rdb-nav-utility { display: none; margin-left: auto; }
.rdb-nav-utility__list { display: flex; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.rdb-nav-utility a { display: flex; align-items: center; height: 2.25rem; padding: 0 .65rem; font-size: .8rem; font-weight: 600; text-decoration: none; color: var(--ink); }
.rdb-nav-utility a:hover { color: var(--accent); }
.rdb-header__actions { margin-left: auto; display: flex; align-items: center; gap: .25rem; }
.rdb-header__email, .rdb-header__phone { display: none; font-size: .8rem; font-weight: 600; text-decoration: none; }
.rdb-header__email:hover, .rdb-header__phone:hover { color: var(--accent); }
.rdb-header__services { display: none; background: var(--accent); }
.rdb-services-bar { display: flex; }
.rdb-services-bar a {
  flex: 1; text-align: center; color: #fff; font-size: .8rem; font-weight: 600;
  padding: .85rem .5rem; text-decoration: none;
}
.rdb-services-bar a:hover { background: rgb(0 0 0 / .1); }
.rdb-menu-toggle span { display: block; width: 1rem; height: 2px; background: var(--ink); margin: 3px 0; }
.rdb-only-mobile { display: inline-flex; }
.rdb-hide-mobile { display: none; }
.rdb-mobile-menu {
  position: fixed; inset: 0; z-index: 80; background: var(--paper); display: flex; flex-direction: column;
}
.rdb-mobile-menu[hidden] { display: none !important; }
.rdb-mobile-menu__bar { display: flex; justify-content: space-between; align-items: center; height: 3.5rem; padding: 0 1rem; border-bottom: 1px solid var(--grey-2); }
.rdb-mobile-menu__bar img { height: 2rem; width: auto; }
.rdb-mobile-menu__nav { overflow: auto; padding: 1.25rem 1rem 6rem; display: flex; flex-direction: column; gap: .15rem; }
.rdb-mobile-menu__nav a { padding: .75rem .75rem; font-weight: 600; text-decoration: none; border-radius: .6rem; }
.rdb-mobile-menu__nav a:hover { background: var(--accent-soft); color: var(--accent); }
.rdb-mobile-menu hr { border: 0; border-top: 1px solid var(--grey-2); margin: .75rem 0; }

@media (min-width: 1024px) {
  .rdb-header__row { height: 4rem; }
  .rdb-logo img { height: 2.25rem; }
  .rdb-nav-utility { display: block; }
  .rdb-header__email, .rdb-header__phone { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem; }
  .rdb-header__services { display: block; }
  .rdb-only-mobile { display: none !important; }
  .rdb-hide-mobile { display: inline-flex; }
  .rdb-header__actions { margin-left: .75rem; }
}

.rdb-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: #fff; }
.rdb-hero__bg { position: absolute; inset: 0; }
.rdb-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.rdb-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgb(10 10 10 / .8), rgb(10 10 10 / .45), rgb(10 10 10 / .25)),
    linear-gradient(to top, rgb(10 10 10 / .75), transparent, rgb(10 10 10 / .4));
}
.rdb-hero__grid {
  position: relative; z-index: 1;
  display: grid; gap: 2.5rem; align-items: center;
  padding: 2.5rem 0 8rem;
  min-height: calc(100svh - 3.5rem);
}
.rdb-hero__copy { text-align: center; max-width: 40rem; margin-inline: auto; }
.rdb-hero h1 { color: #fff; text-shadow: 0 1px 2px rgb(0 0 0 / .75), 0 8px 28px rgb(0 0 0 / .55); }
.rdb-hero h1 span { display: block; margin-top: .4rem; color: var(--accent); }
.rdb-hero p { color: #fff; }
.rdb-hero__call { margin-top: .75rem; }
.rdb-hero__call a { color: #fff; font-weight: 600; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; }
.rdb-review-pill {
  display: inline-flex; flex-direction: column; gap: .4rem; text-align: left;
  background: rgb(255 255 255 / .95); color: var(--ink); border-radius: 1rem; padding: .75rem 1rem; margin-bottom: 1.1rem;
  box-shadow: var(--shadow);
}
.rdb-review-pill a { color: inherit; }
.rdb-trust { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.rdb-trust li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 600; }
.rdb-trust li::before {
  content: "✓"; width: 1.5rem; height: 1.5rem; border-radius: 999px; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-size: .7rem;
}
.rdb-phone { width: min(15.5rem, 100%); margin-inline: auto; }
.rdb-phone__frame {
  position: relative; aspect-ratio: 9/16; overflow: hidden;
  border: 10px solid #0a0a0a; border-radius: 2.1rem; background: #000;
  box-shadow: 0 24px 50px -18px rgb(0 0 0 / .65);
}
.rdb-phone__frame::before {
  content: ""; position: absolute; left: 50%; top: .5rem; transform: translateX(-50%);
  width: 5rem; height: .35rem; border-radius: 999px; background: rgb(255 255 255 / .35); z-index: 2;
}
.rdb-phone video, .rdb-phone img { width: 100%; height: 100%; object-fit: cover; }
.rdb-phone__play { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; }
.rdb-phone p { text-align: center; font-size: .75rem; color: #fff; margin-top: .75rem; }
.rdb-phone--gallery p { color: var(--ink); }
@media (min-width: 768px) {
  .rdb-hero__copy { text-align: left; margin-inline: 0; }
  .rdb-trust { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }
  .rdb-review-pill { flex-direction: row; align-items: center; border-radius: 999px; }
}
@media (min-width: 1024px) {
  .rdb-hero__grid { grid-template-columns: 1fr auto; padding: 4rem 0; min-height: calc(100svh - 7.5rem); }
  .rdb-phone { margin-inline: 0; width: 17.5rem; }
}

.rdb-section { padding: 4rem 0; position: relative; }
@media (min-width: 1024px) { .rdb-section { padding: 6rem 0; } }
.rdb-section--grey { background: var(--grey); }
.rdb-section--dark { background: var(--ink); color: #fff; }
.rdb-section--dark h2, .rdb-section--dark h3 { color: #fff; }
.rdb-section--fade::before {
  content: ""; position: absolute; inset: 0; background-image: var(--rdb-fade); background-size: cover;
  opacity: .18; pointer-events: none;
}
.rdb-section--fade::after {
  content: ""; position: absolute; inset: 0; background: rgb(243 241 238 / .88); pointer-events: none;
}
.rdb-section--dark.rdb-section--fade::after { background: rgb(10 10 10 / .8); }
.rdb-section--fade > * { position: relative; z-index: 1; }
.rdb-section__head { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 640px) {
  .rdb-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

.rdb-about__grid { display: grid; gap: 2.5rem; align-items: center; }
.rdb-about__copy { text-align: center; }
.rdb-about__image img { border-radius: 1rem; width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }
.rdb-about__image figcaption { font-size: .75rem; margin-top: .75rem; }
.rdb-about__copy .rdb-actions { justify-content: center; }
@media (min-width: 1024px) {
  .rdb-about__grid { grid-template-columns: 1fr minmax(0, 28rem); }
  .rdb-about__copy { text-align: left; order: 2; }
  .rdb-about__image { order: 1; }
  .rdb-about__copy .rdb-actions { justify-content: flex-start; }
}

.rdb-cards { display: grid; gap: 1rem; margin-top: 2.5rem; }
.rdb-cards--3 { grid-template-columns: 1fr; }
.rdb-cards--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .rdb-cards--3, .rdb-cards--4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .rdb-cards--3 { grid-template-columns: repeat(3, 1fr); }
  .rdb-cards--4 { grid-template-columns: repeat(4, 1fr); }
}
.rdb-card { background: rgb(255 255 255 / .95); border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow); }
.rdb-card--dark { background: rgb(10 10 10 / .5); color: #fff; border: 1px solid rgb(255 255 255 / .1); box-shadow: none; }
.rdb-card--dark span { font-family: var(--display); font-size: 1.75rem; font-weight: 800; color: var(--accent); }
.rdb-card h3 { margin: 1rem 0 .5rem; font-size: 1.1rem; }

.rdb-carousel {
  display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem; scrollbar-width: none;
}
.rdb-carousel::-webkit-scrollbar { display: none; }
.rdb-service-card, .rdb-review-card {
  flex: 0 0 min(85vw, 20.5rem); scroll-snap-align: start;
  background: var(--grey); border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow);
}
.rdb-service-card__media { position: relative; aspect-ratio: 4/3; }
.rdb-service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.rdb-service-card__icon { position: absolute; left: .75rem; top: .75rem; width: 3rem; height: 3rem; object-fit: contain; background: #fff; border-radius: .75rem; padding: .4rem; }
.rdb-service-card__body { padding: 1.25rem; }
.rdb-review-card { display: flex; flex-direction: column; }
.rdb-review-card__top { background: var(--ink); color: var(--accent); padding: 1rem 1.25rem; font-size: 1.1rem; }
.rdb-review-card p, .rdb-review-card footer { padding: 0 1.25rem; }
.rdb-review-card p { flex: 1; }
.rdb-review-card footer { padding-bottom: 1.25rem; font-size: .9rem; }
@media (min-width: 768px) {
  .rdb-carousel[data-carousel] { display: grid; grid-template-columns: 1fr 1fr; overflow: visible; }
  .rdb-service-card, .rdb-review-card { flex: none; }
}
@media (min-width: 1024px) {
  .rdb-carousel[data-carousel] { grid-template-columns: repeat(4, 1fr); }
}

.rdb-review-strip {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  background: var(--grey); border-radius: 1rem; padding: 1rem 1.25rem; margin: 2rem 0;
}
.rdb-review-strip__social { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; justify-content: center; }
.rdb-review-strip__social img { height: 2.25rem; width: auto; }
@media (min-width: 768px) { .rdb-review-strip { flex-direction: row; flex-wrap: wrap; } }

.rdb-pills { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; list-style: none; }
.rdb-pills li { background: #fff; border-radius: 999px; padding: .5rem .9rem; font-size: .9rem; font-weight: 500; box-shadow: var(--shadow); }

.rdb-faq details { border-bottom: 1px solid var(--grey-2); }
.rdb-faq summary { cursor: pointer; padding: 1.15rem 0; font-family: var(--display); font-weight: 600; }
.rdb-faq details p { padding-bottom: 1.15rem; }

.rdb-ba-grid { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .rdb-ba-grid { grid-template-columns: repeat(3, 1fr); } }
.rdb-ba-grid--page { grid-template-columns: 1fr; }
.rdb-ba { background: #fff; border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow); }
.rdb-ba__pair { display: grid; grid-template-columns: 1fr 1fr; }
.rdb-ba figure { position: relative; margin: 0; }
.rdb-ba img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.rdb-ba figcaption {
  position: absolute; top: .5rem; left: .5rem; background: var(--ink); color: #fff;
  font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; padding: .25rem .65rem;
}
.rdb-ba figcaption.is-after { background: var(--accent); }
.rdb-ba__caption { padding: 1rem 1.25rem; }
.rdb-ba__caption span { display: block; font-size: .85rem; }

.rdb-final-cta { background: var(--accent); color: #fff; padding: 3.5rem 0; }
.rdb-final-cta h2 { color: #fff; }
.rdb-final-cta__row { display: flex; flex-direction: column; gap: 1.5rem; text-align: center; align-items: center; }
@media (min-width: 1024px) {
  .rdb-final-cta__row { flex-direction: row; justify-content: space-between; text-align: left; }
}

.rdb-footer { background: var(--ink); color: #fff; padding-top: 4rem; }
.rdb-footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .rdb-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .rdb-footer__grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }
.rdb-footer__logo { height: 2.5rem; width: auto; filter: brightness(0) invert(1); }
.rdb-footer h3 { color: var(--accent); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.rdb-footer ul { list-style: none; padding: 0; }
.rdb-footer a { text-decoration: none; }
.rdb-footer a:hover { color: var(--accent); }
.rdb-footer__base { border-top: 1px solid rgb(255 255 255 / .1); margin-top: 2.5rem; padding: 1.25rem 0; font-size: .75rem; }
.rdb-footer__base-row { display: flex; flex-direction: column; gap: .5rem; }
@media (min-width: 640px) { .rdb-footer__base-row { flex-direction: row; justify-content: space-between; } }

.rdb-sticky-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
  background: rgb(255 255 255 / .95); border-top: 1px solid var(--grey-2);
  padding: .75rem .75rem max(.75rem, env(safe-area-inset-bottom));
}
@media (min-width: 768px) { .rdb-sticky-bar { display: none; } }

.rdb-postcode__row {
  display: flex; flex-direction: column; gap: .5rem;
  background: #fff; border-radius: 1rem; padding: .4rem; box-shadow: var(--shadow);
}
.rdb-postcode input {
  height: 3rem; border: 0; padding: 0 1rem; font: inherit; outline: none; min-width: 0; flex: 1;
}
@media (min-width: 640px) {
  .rdb-postcode__row { flex-direction: row; align-items: center; border-radius: 999px; }
}
.rdb-postcode__pin { display: none; }
@media (min-width: 640px) { .rdb-postcode__pin { display: inline; padding-left: .75rem; } }

.rdb-form-card {
  background: #fff; border-radius: 1rem; padding: 1.25rem; box-shadow: var(--shadow); min-width: 0;
}
.rdb-form-card__title { font-family: var(--display); font-size: 1.15rem; font-weight: 700; margin: 0 0 .25rem; }
.rdb-form-card label { display: block; margin: .75rem 0; font-size: .8rem; font-weight: 600; }
.rdb-form-card input, .rdb-form-card select, .rdb-form-card textarea {
  width: 100%; margin-top: .35rem; border: 1px solid var(--grey-2); border-radius: 999px;
  height: 2.75rem; padding: 0 1rem; font: inherit; background: #fff;
}
.rdb-form-card textarea { border-radius: .75rem; height: auto; padding: .75rem 1rem; }
.rdb-form-card input:focus, .rdb-form-card select:focus, .rdb-form-card textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgb(232 92 2 / .2);
}
.rdb-split { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .rdb-split { grid-template-columns: 1fr 1fr; align-items: start; } }

.rdb-page-hero { background: var(--ink); color: #fff; padding: 3.5rem 0; }
.rdb-page-hero h1 { color: #fff; }
.rdb-masonry { columns: 2; gap: 1rem; margin: 2rem 0; }
@media (min-width: 768px) { .rdb-masonry { columns: 3; } }
@media (min-width: 1024px) { .rdb-masonry { columns: 4; } }
.rdb-masonry figure { break-inside: avoid; margin: 0 0 1rem; border-radius: 1rem; overflow: hidden; background: var(--grey); }
.rdb-masonry img { width: 100%; }
.rdb-hint { font-size: .9rem; }
.rdb-play-badge {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-weight: 700;
}
.rdb-play-badge::before {
  content: ""; width: 3.5rem; height: 3.5rem; border-radius: 999px; background: var(--accent);
  position: absolute;
}
.rdb-contact-list { list-style: none; padding: 0; display: grid; gap: .85rem; font-weight: 600; }
.rdb-prose p { margin: 0 0 1rem; }

.rdb-modal {
  position: fixed; inset: 0; z-index: 80; background: rgb(10 10 10 / .8);
  display: grid; place-items: center; padding: 1rem;
}
.rdb-modal[hidden] { display: none !important; }
.rdb-modal__panel { width: min(22rem, 100%); background: #000; border-radius: 1rem; overflow: hidden; }
.rdb-modal__bar { display: flex; justify-content: space-between; align-items: center; padding: .75rem 1rem; color: #fff; }
.rdb-modal__bar button {
  width: 2.5rem; height: 2.5rem; border: 0; border-radius: 999px; background: #fff; cursor: pointer; font-size: 1.25rem;
}
.rdb-modal video { width: 100%; aspect-ratio: 9/16; object-fit: cover; background: #000; }

[class*="elementor-widget-rdb-"] > .elementor-widget-container {
  padding: 0 !important;
}
.elementor-page .elementor-element.e-con {
  --padding-top: 0px;
  --padding-bottom: 0px;
  --padding-left: 0px;
  --padding-right: 0px;
}

.text-center { text-align: center; }
@media (min-width: 768px) {
  .rdb-section { text-align: left; }
}
@media (max-width: 767px) {
  .rdb-section .rdb-wrap > .rdb-kicker,
  .rdb-section .rdb-wrap > h2,
  .rdb-hero__copy { text-align: center; }
}
