/* rs-gearbox build 20260828.1417 */
/*
 * RS Gearbox & Differentials, global stylesheet.
 *
 * The site chrome (header, footer, buttons, shared section shells) ported from
 * the live site's own embed markup. Page-specific styles live alongside their
 * template (brand.css for the 24 brand pages, pages.css for the core pages).
 */

/* ---------------------------------------------------------------- base ---- */

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

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--gb-black);
	color: var(--gb-on-dark);
	font-family: var(--gb-font);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

img,
svg,
video {
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
}

h1,
h2,
h3,
h4 {
	letter-spacing: -0.02em;
}

:where(a, button, input, select, textarea, summary):focus-visible {
	outline: 2px solid var(--gb-red);
	outline-offset: 3px;
	border-radius: 4px;
}

.gb-icon {
	display: inline-block;
	vertical-align: -0.125em;
	flex: none;
}

.gb-shell {
	width: 100%;
	max-width: var(--gb-max);
	margin: 0 auto;
	padding: 0 var(--gb-gutter);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.gb-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	padding: 12px 18px;
	background: var(--gb-red);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.gb-skip:focus {
	left: 8px;
	top: 8px;
}

/* ------------------------------------------------------------- buttons ---- */

.gb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 58px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: var(--gb-r-btn);
	font-size: 17px;
	line-height: 1;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gb-btn--primary {
	background: var(--gb-red);
	color: #fff;
}

.gb-btn--primary:hover {
	background: var(--gb-red-hover);
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(243, 54, 69, 0.22);
}

.gb-btn--secondary {
	background: transparent;
	color: var(--gb-on-dark);
	border-color: rgba(255, 255, 255, 0.12);
}

.gb-btn--secondary:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.22);
}

.gb-btn--block {
	width: 100%;
}

@media (prefers-reduced-motion: reduce) {
	.gb-btn,
	.gb-footer-link {
		transition: none;
	}

	.gb-btn--primary:hover {
		transform: none;
	}
}

/* -------------------------------------------------------------- header ---- */

.gb-header {
	background: var(--gb-black);
	border-bottom: 1px solid var(--gb-line-soft);
}

.gb-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	width: 100%;
	max-width: var(--gb-max);
	margin: 0 auto;
	padding: 18px var(--gb-gutter);
}

.gb-logo {
	display: inline-flex;
	flex: none;
	line-height: 0;
}

.gb-logo img {
	width: 150px;
	height: 75px;
	object-fit: contain;
}

.gb-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-left: auto;
}

.gb-menu {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gb-menu a {
	color: var(--gb-on-dark);
	font-size: 17px;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.2s ease;
}

.gb-menu a:hover,
.gb-menu .current-menu-item > a,
.gb-menu [aria-current='page'] {
	color: var(--gb-red);
}

.gb-header__cta {
	min-height: 46px;
	padding: 0 26px;
	border-radius: 8px;
	font-size: 16px;
}

.gb-nav-toggle {
	display: none;
	margin-left: auto;
	padding: 8px;
	background: none;
	border: 0;
	color: var(--gb-on-dark);
	cursor: pointer;
}

.gb-nav-toggle__close,
.gb-nav-toggle[aria-expanded='true'] .gb-nav-toggle__open {
	display: none;
}

.gb-nav-toggle[aria-expanded='true'] .gb-nav-toggle__close {
	display: block;
}

@media screen and (max-width: 991px) {
	.gb-header__inner {
		flex-wrap: wrap;
		padding: 14px var(--gb-gutter-md);
	}

	.gb-nav-toggle {
		display: inline-flex;
	}

	.gb-nav {
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		width: 100%;
		margin: 0;
		padding: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s ease, padding 0.25s ease;
	}

	.gb-nav.is-open {
		max-height: 520px;
		padding: 14px 0 6px;
	}

	.gb-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.gb-menu li + li {
		border-top: 1px solid var(--gb-line-soft);
	}

	.gb-menu a {
		display: block;
		padding: 14px 2px;
	}

	.gb-header__cta {
		width: 100%;
		min-height: 52px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gb-nav {
		transition: none;
	}
}

/* -------------------------------------------------------------- footer ---- */

.gb-footer {
	background: var(--gb-footer);
	color: var(--gb-on-dark);
}

.gb-footer-wrap {
	width: 100%;
	max-width: var(--gb-max);
	margin: 0 auto;
	padding: 64px var(--gb-gutter) 0;
}

.gb-footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr 1.15fr 1.15fr;
	gap: 56px;
	align-items: start;
	padding-bottom: 54px;
}

.gb-footer-brand-logo {
	display: block;
	width: 100%;
	max-width: 360px;
	height: auto;
	margin: 0 0 22px;
}

.gb-footer-tagline {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
	color: var(--gb-on-dark-55);
}

.gb-footer-heading {
	margin: 0 0 22px;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--gb-on-dark);
}

.gb-footer-links,
.gb-footer-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gb-footer-links li {
	margin: 0 0 14px;
}

.gb-footer-links li:last-child,
.gb-footer-contact-list li:last-child {
	margin-bottom: 0;
}

.gb-footer-link {
	display: inline-block;
	color: var(--gb-on-dark-55);
	font-size: 18px;
	line-height: 1.45;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
}

.gb-footer-link:hover {
	color: var(--gb-on-dark);
	transform: translateX(2px);
}

.gb-footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 0 0 14px;
}

.gb-footer-contact-icon {
	width: 20px;
	min-width: 20px;
	margin-top: 2px;
	font-size: 20px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.72);
}

.gb-footer-contact-text {
	font-size: 18px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--gb-on-dark-55);
}

a.gb-footer-contact-text {
	text-decoration: none;
}

a.gb-footer-contact-text:hover {
	color: var(--gb-on-dark);
}

.gb-footer-bottom,
.gb-footer-built {
	border-top: 1px solid var(--gb-line-soft);
}

.gb-footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	max-width: var(--gb-max);
	margin: 0 auto;
	padding: 22px var(--gb-gutter);
}

.gb-footer-copyright,
.gb-footer-sister-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.58);
}

.gb-footer-sister-link {
	color: var(--gb-red-link);
	font-weight: 500;
	text-decoration: none;
}

.gb-footer-built-inner {
	width: 100%;
	max-width: var(--gb-max);
	margin: 0 auto;
	padding: 16px var(--gb-gutter);
	text-align: center;
}

.gb-footer-built-text {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.5);
}

.gb-footer-built-link {
	color: var(--gb-blue);
	font-weight: 500;
	text-decoration: none;
}

.gb-footer-sister-link:hover,
.gb-footer-built-link:hover {
	opacity: 0.9;
}

@media screen and (max-width: 1180px) {
	.gb-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px 32px;
	}
}

@media screen and (max-width: 991px) {
	.gb-footer-wrap {
		padding: 52px var(--gb-gutter-md) 0;
	}

	.gb-footer-bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px var(--gb-gutter-md);
	}

	.gb-footer-built-inner {
		padding: 14px var(--gb-gutter-md);
	}
}

@media screen and (max-width: 640px) {
	.gb-footer-wrap {
		padding: 44px var(--gb-gutter-sm) 0;
	}

	.gb-footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		padding-bottom: 38px;
	}

	.gb-footer-brand-logo {
		max-width: 300px;
		margin-bottom: 18px;
	}

	.gb-footer-tagline,
	.gb-footer-link,
	.gb-footer-contact-text {
		font-size: 16px;
		line-height: 1.6;
	}

	.gb-footer-heading {
		margin-bottom: 18px;
		font-size: 19px;
	}

	.gb-footer-bottom-inner {
		padding: 18px var(--gb-gutter-sm);
	}

	.gb-footer-copyright,
	.gb-footer-sister-text {
		font-size: 15px;
	}

	.gb-footer-built-inner {
		padding: 12px var(--gb-gutter-sm);
	}

	.gb-footer-built-text {
		font-size: 14px;
	}
}

/* ---------------------------------------------------------------- hero ---- */

.gb-hero {
	position: relative;
	isolation: isolate;
	background: var(--gb-black);
	overflow: hidden;
}

.gb-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.34;
}

.gb-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.72) 45%, rgba(10, 10, 10, 0.55) 100%);
}

.gb-hero__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
	padding-block: 96px;
}

.gb-hero--form .gb-hero__inner {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
}

/*
 * Hero type, sized from the live DOM's own inline styles rather than by eye:
 * the H1 is 69px and the sub-line is 30px bold white. At 58px/21px the headline
 * wrapped to two lines where the source wraps to three, and the sub-line read as
 * muted supporting text rather than the second half of the value proposition.
 */
.gb-hero__title {
	margin: 0 0 18px;
	font-size: 69px;
	line-height: 1.06;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.gb-hero__accent {
	color: var(--gb-red);
}

.gb-hero__sub {
	margin: 0 0 26px;
	max-width: 680px;
	font-size: 30px;
	line-height: 1.4;
	font-weight: 700;
	color: var(--gb-on-dark);
}

.gb-hero__cta {
	min-height: 48px;
	padding: 0 22px;
	border-radius: 8px;
	font-size: 16px;
}

@media screen and (max-width: 991px) {
	.gb-hero--form .gb-hero__inner {
		grid-template-columns: 1fr;
	}

	.gb-hero__inner {
		padding-block: 60px;
	}

	.gb-hero__title {
		font-size: 40px;
	}

	.gb-hero__sub {
		font-size: 18px;
	}
}

@media screen and (max-width: 640px) {
	.gb-hero__title {
		font-size: 32px;
	}
}

/* --------------------------------------------------------- quote form ---- */

/*
 * The quote card, this site's money moment.
 *
 * The panel is opaque #2F2E2E and the inputs are pure black, both read straight
 * off the live site. The first pass had a translucent near-black panel with
 * inputs one shade lighter than it, an 8-level difference where the source has
 * 47, so the fields all but disappeared into the card. Contrast between panel
 * and field is what makes a form read as fillable, so it is not a detail.
 */
.gb-quote {
	padding: 26px 24px;
	border: 1px solid rgba(243, 54, 69, 0.55);
	border-radius: var(--gb-r-md);
	background: #2f2e2e;
	box-shadow: 0 0 46px rgba(243, 54, 69, 0.38);
}

.gb-quote__title {
	margin: 0 0 18px;
	font-size: 26px;
	line-height: 1.2;
	font-weight: 700;
}

.gb-quote__notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 16px;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 15px;
	line-height: 1.5;
}

.gb-quote__notice--ok {
	background: rgba(46, 160, 67, 0.14);
	border: 1px solid rgba(46, 160, 67, 0.4);
	color: #d6f5db;
}

.gb-quote__notice--err {
	background: var(--gb-red-tint-strong);
	border: 1px solid var(--gb-red-edge);
	color: #ffd9dd;
}

.gb-field {
	margin: 0 0 14px;
}

.gb-field label:not(.screen-reader-text):not(.gb-radio),
.gb-field legend {
	display: block;
	margin: 0 0 8px;
	padding: 0;
	font-size: 13px;
	line-height: 1.2;
	color: var(--gb-on-dark-55);
}

.gb-field input,
.gb-field select,
.gb-field textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	background: #000;
	color: var(--gb-on-dark);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.3;
}

.gb-field textarea {
	min-height: 90px;
	resize: vertical;
}

.gb-field input::placeholder,
.gb-field textarea::placeholder {
	color: rgba(255, 255, 255, 0.42);
}

.gb-field--branch {
	margin: 0 0 14px;
	padding: 0;
	border: 0;
}

/* Stacked, as the live form has them. Inline was unintended drift, and it also
   made the two options read as one row of noise rather than a choice. */
.gb-radio {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 6px;
	font-size: 15px;
	color: var(--gb-on-dark-80);
	cursor: pointer;
}

.gb-radio input {
	width: auto;
	accent-color: var(--gb-red);
}

.gb-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.gb-quote .gb-btn {
	margin-top: 6px;
	min-height: 52px;
}

.gb-hero--center .gb-hero__inner {
	justify-items: center;
	text-align: center;
	padding-block: 72px;
}

.gb-hero--center .gb-hero__sub {
	margin-inline: auto;
}

.gb-quote-section {
	padding: 64px 0;
	background: var(--gb-black);
}

.gb-quote-section__inner {
	/* Live measures the card at 504px; 552 minus the card's 24px padding
	   either side lands on it. */
	max-width: 552px;
}

/* ------------------------------------------------------- footer social ---- */

.gb-footer-social {
	display: flex;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gb-footer-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--gb-line);
	border-radius: var(--gb-r-pill);
	color: var(--gb-on-dark-70);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.gb-footer-social__link:hover {
	color: var(--gb-on-dark);
	border-color: var(--gb-red);
}

/* --------------------------------------------------------- blog + posts ---- */

.gb-posts {
	padding: 56px 0 88px;
	background: var(--gb-black);
}

/*
 * A single column of full-width rows, image left, copy right, on the dark
 * ground. This mirrors the live listing. An earlier pass used a three-across
 * grid of white cards on a light band: a pattern the site does use on the brand
 * pages, but wrong here, because it dropped the only light section on the site
 * between a dark hero and a dark footer and matched nothing in the source.
 */
.gb-posts__list {
	display: flex;
	flex-direction: column;
	gap: 26px;
	max-width: 1000px;
	margin: 0 auto;
}

.gb-post-card {
	display: grid;
	grid-template-columns: 430px 1fr;
	overflow: hidden;
	border: 1px solid var(--gb-line);
	border-radius: var(--gb-r-md);
	background: var(--gb-panel);
}

.gb-post-card__media {
	display: block;
	overflow: hidden;
}

.gb-post-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gb-post-card__media:hover img {
	transform: scale(1.03);
}

.gb-post-card__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 30px 32px;
	justify-content: center;
}

.gb-post-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--gb-on-dark-50);
	font-size: 14px;
}

.gb-post-card__title {
	margin: 0;
	font-size: 27px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.gb-post-card__title a {
	color: var(--gb-on-dark);
	text-decoration: none;
}

.gb-post-card__title a:hover {
	color: var(--gb-red);
}

.gb-post-card__excerpt {
	margin: 0;
	color: var(--gb-on-dark-60);
	font-size: 16px;
	line-height: 1.6;
}

.gb-post-card__more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 4px;
	color: var(--gb-red);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.gb-post-card__more:hover {
	text-decoration: underline;
}

/* ------------------------------------------------- recent posts on a post ---- */

.gb-related {
	padding: 56px 0 8px;
	background: var(--gb-black);
}

.gb-related__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 22px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--gb-line);
}

.gb-related__title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--gb-on-dark);
}

.gb-related__all {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex: none;
	color: var(--gb-red);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.gb-related__all:hover {
	text-decoration: underline;
}

.gb-related__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px;
}

/* The compact variant stacks instead of splitting, so two of them sit side by
   side without the image squeezing the title into four lines. */
.gb-post-card--compact {
	grid-template-columns: 1fr;
}

.gb-post-card--compact .gb-post-card__media img {
	aspect-ratio: 16 / 9;
}

.gb-post-card--compact .gb-post-card__body {
	padding: 20px 22px 24px;
	gap: 8px;
}

.gb-post-card--compact .gb-post-card__title {
	font-size: 19px;
}

.gb-pagination {
	margin-top: 40px;
	text-align: center;
}

.gb-pagination .page-numbers {
	display: inline-block;
	min-width: 42px;
	padding: 10px 12px;
	margin: 0 4px;
	border-radius: 8px;
	background: var(--gb-white);
	color: var(--gb-on-light);
	text-decoration: none;
}

.gb-pagination .current {
	background: var(--gb-red);
	color: #fff;
}

/* the post itself */

.gb-post__head {
	padding: 64px 0 26px;
	background: var(--gb-black);
}

.gb-post__inner {
	max-width: 780px;
}

.gb-post__head .gb-post__meta {
	color: var(--gb-on-dark-50);
}

.gb-post__back {
	color: var(--gb-red);
	text-decoration: none;
	font-weight: 700;
}

.gb-post__title {
	margin: 0;
	font-size: 44px;
	line-height: 1.12;
	font-weight: 700;
}

.gb-post__media {
	margin-top: 26px;
}

.gb-post__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--gb-r-md);
}

.gb-prose {
	padding: 34px 0 64px;
	font-size: 18px;
	line-height: 1.75;
	color: var(--gb-on-dark-80);
}

.gb-prose h2 {
	margin: 38px 0 14px;
	font-size: 27px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--gb-on-dark);
}

.gb-prose p {
	margin: 0 0 18px;
}

.gb-prose ul,
.gb-prose ol {
	margin: 0 0 20px;
	padding-left: 22px;
}

.gb-prose li {
	margin-bottom: 8px;
}

.gb-prose a {
	color: var(--gb-red);
	text-underline-offset: 3px;
}

.gb-prose img {
	display: block;
	width: 100%;
	height: auto;
	margin: 26px 0;
	border-radius: var(--gb-r-md);
}

.gb-prose figcaption {
	margin-top: -14px;
	margin-bottom: 26px;
	font-size: 15px;
	color: var(--gb-on-dark-50);
}

.gb-post__callout {
	padding: 16px 18px;
	margin: 0 0 22px;
	border-left: 3px solid var(--gb-red);
	border-radius: 12px;
	background: var(--gb-red-tint);
}

@media screen and (max-width: 991px) {
	.gb-post-card {
		grid-template-columns: 300px 1fr;
	}

	.gb-post__title {
		font-size: 34px;
	}
}

@media screen and (max-width: 640px) {
	.gb-post-card,
	.gb-related__grid {
		grid-template-columns: 1fr;
	}

	.gb-post-card__title {
		font-size: 22px;
	}

	.gb-post-card__body {
		padding: 22px 20px 26px;
	}

	.gb-posts {
		padding: 44px 0 60px;
	}

	.gb-post__head {
		padding: 44px 0 20px;
	}

	.gb-post__title {
		font-size: 28px;
	}

	.gb-prose {
		font-size: 17px;
	}
}

/* ----------------------------------------------- service pages (bookings) ---- */

/*
 * /book-online and the three /service-page/* pages. These were Wix Bookings
 * components, so unlike the rest of the site there was no embed to port and
 * nothing here is generated: it is hand-built to the same tokens as everything
 * else. See build/scripts/build-service-pages.mjs for what the source said and
 * what was deliberately left behind.
 */

.gb-service-list {
	padding: 64px 0 72px;
	background: var(--gb-light);
}

.gb-service-list__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.gb-service-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--gb-line-light);
	border-radius: var(--gb-r-md);
	background: var(--gb-white);
	box-shadow: var(--gb-shadow-card);
}

.gb-service-card__media img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.gb-service-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 10px;
	padding: 22px 22px 24px;
}

.gb-service-card__title {
	margin: 0;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.gb-service-card__title a {
	color: var(--gb-on-light);
	text-decoration: none;
}

.gb-service-card__title a:hover {
	color: var(--gb-red);
}

.gb-service-card__text {
	margin: 0;
	color: var(--gb-on-light-mid);
	font-size: 15px;
	line-height: 1.6;
}

.gb-service-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--gb-on-light-soft);
	font-size: 14px;
}

/* Pushes the button to the card floor, so a longer blurb cannot leave one
   card's CTA sitting higher than its neighbours'. */
.gb-service-card__cta {
	margin-top: auto;
	align-self: flex-start;
	background: transparent;
	color: var(--gb-on-light);
	border-color: rgba(17, 17, 17, 0.16);
}

.gb-service-card__cta:hover {
	background: var(--gb-on-light);
	color: var(--gb-white);
	border-color: var(--gb-on-light);
}

/* The diagnostic-fee line: the honest answer to "which one do I need?", and
   the site's real conversion device now that the dollar prices are gone. */
.gb-service-note {
	margin: 32px 0 0;
	padding: 18px 22px;
	border: 1px solid var(--gb-red-edge);
	border-radius: var(--gb-r-sm);
	background: var(--gb-red-tint);
	color: var(--gb-on-light);
	font-size: 15px;
	line-height: 1.65;
}

/* ------------------------------------------------------------ breadcrumb ---- */

.gb-breadcrumb {
	padding: 18px 0;
	border-bottom: 1px solid var(--gb-line-light);
	background: var(--gb-light);
}

.gb-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--gb-on-light-soft);
	font-size: 14px;
}

.gb-breadcrumb__item + .gb-breadcrumb__item::before {
	content: "/";
	margin-right: 8px;
	color: var(--gb-on-light-soft);
}

.gb-breadcrumb__item a {
	color: var(--gb-on-light-mid);
	text-decoration: none;
}

.gb-breadcrumb__item a:hover {
	color: var(--gb-red);
	text-decoration: underline;
}

/* -------------------------------------------------------- service detail ---- */

.gb-service-detail {
	padding: 52px 0 72px;
	background: var(--gb-light);
}

.gb-service-detail .gb-shell {
	max-width: 860px;
}

.gb-service-detail__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 28px;
	color: var(--gb-on-light-soft);
	font-size: 15px;
}

.gb-service-detail__heading {
	margin: 0 0 12px;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--gb-on-light);
}

.gb-service-detail__heading + .gb-service-detail__text {
	margin: 0;
}

.gb-service-detail__text {
	color: var(--gb-on-light-mid);
	font-size: 17px;
	line-height: 1.7;
}

.gb-service-branches {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gb-service-branch {
	padding: 22px;
	border: 1px solid var(--gb-line-light);
	border-radius: var(--gb-r-sm);
	background: var(--gb-white);
}

.gb-service-branch__name {
	margin: 0 0 12px;
	font-size: 17px;
	font-weight: 700;
	color: var(--gb-on-light);
}

.gb-service-branch__line {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 8px;
	color: var(--gb-on-light-mid);
	font-size: 15px;
	line-height: 1.55;
}

.gb-service-branch__line:last-child {
	margin-bottom: 0;
}

.gb-service-branch__line .gb-icon {
	flex: none;
	margin-top: 3px;
	color: var(--gb-red);
}

.gb-service-branch__line a {
	color: var(--gb-on-light-mid);
	text-decoration: none;
}

.gb-service-branch__line a:hover {
	color: var(--gb-red);
	text-decoration: underline;
}

/* The service-detail heading follows a block of text, so it needs its own
   top margin once it is not the first thing in the section. */
.gb-service-detail__text + .gb-service-detail__heading,
.gb-service-note + .gb-service-detail__heading {
	margin-top: 40px;
}

@media screen and (max-width: 1024px) {
	.gb-service-list__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 640px) {
	.gb-service-list__grid,
	.gb-service-branches {
		grid-template-columns: 1fr;
	}

	.gb-service-list {
		padding: 44px 0 52px;
	}

	.gb-service-detail {
		padding: 36px 0 52px;
	}

	.gb-service-detail__heading {
		font-size: 22px;
	}

	.gb-service-detail__text {
		font-size: 16px;
	}
}

/* ------------------------------------------------------- consent banner ---- */

/*
 * Bottom-anchored rather than a full-screen modal: this site's traffic is paid,
 * and a modal that blocks a landing page is a modal that burns the click. It
 * sits above the content, is dismissible in one tap, and never covers the
 * enquiry form because the form is never at the very bottom of a page.
 */
.gb-consent {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 60;
	padding: 14px var(--gb-gutter);
	border-top: 1px solid var(--gb-line);
	background: rgba(10, 10, 10, 0.96);
	backdrop-filter: blur(6px);
}

.gb-consent[hidden] {
	display: none;
}

.gb-consent__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	max-width: var(--gb-max);
	margin: 0 auto;
	flex-wrap: wrap;
}

.gb-consent__text {
	margin: 0;
	max-width: 720px;
	color: var(--gb-on-dark-70);
	font-size: 14px;
	line-height: 1.55;
}

.gb-consent__actions {
	display: flex;
	gap: 10px;
	flex: none;
}

/* Decline is a real button, not a link tucked under the fold. Consent has to be
   freely given, so the two choices get the same footprint. */
.gb-consent__btn {
	min-width: 116px;
	padding: 10px 18px;
	font-size: 14px;
}

.gb-consent__btn:not(.gb-btn--primary) {
	background: transparent;
	color: var(--gb-on-dark);
	border-color: rgba(255, 255, 255, 0.22);
}

.gb-consent__btn:not(.gb-btn--primary):hover {
	background: rgba(255, 255, 255, 0.06);
}

@media screen and (max-width: 640px) {
	.gb-consent__inner {
		gap: 12px;
	}

	.gb-consent__text {
		font-size: 13px;
	}

	.gb-consent__actions {
		width: 100%;
	}

	.gb-consent__btn {
		flex: 1;
	}
}

/* ------------------------------------------------------------ our story ---- */

/*
 * A Wix-native section on the source, so it is rebuilt rather than ported. Set
 * on the dark ground between How It Works (light) and Our Branches (dark),
 * which is where the source puts it.
 */
.gb-story {
	padding: 72px 0 76px;
	background: var(--gb-black);
}

.gb-story__inner {
	max-width: 900px;
}

.gb-story__eyebrow {
	margin: 0 0 10px;
	color: var(--gb-red);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gb-story__title {
	margin: 0 0 26px;
	font-size: 54px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--gb-on-dark);
	text-wrap: balance;
}

.gb-story__body {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.gb-story__body p {
	margin: 0;
	color: var(--gb-on-dark-70);
	font-size: 17px;
	line-height: 1.75;
}

.gb-story__body a {
	color: var(--gb-red);
	text-decoration: none;
}

.gb-story__body a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 640px) {
	.gb-story {
		padding: 48px 0 52px;
	}

	.gb-story__title {
		font-size: 34px;
	}

	.gb-story__body p {
		font-size: 16px;
	}
}

.gb-quote-section__heading {
	max-width: var(--gb-max);
	margin: 0 auto 26px;
	padding: 0 var(--gb-gutter);
	font-size: 42px;
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
	text-align: center;
	color: var(--gb-on-dark);
	text-wrap: balance;
}

@media screen and (max-width: 640px) {
	.gb-quote-section__heading {
		font-size: 28px;
	}
}

/* ------------------------------------------------------- whatsapp float ---- */

/*
 * Ported from the sister build per Seth's instruction. Bottom-left, so it never
 * fights the consent banner's Accept button or a page's primary CTA, both of
 * which live bottom-right territory on mobile.
 */
.gb-whatsapp {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 55;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: var(--gb-r-pill);
	background: #25d366;
	color: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
	transition: transform 0.15s ease;
}

.gb-whatsapp:hover {
	color: #fff;
	transform: scale(1.06);
}

.gb-whatsapp__icon {
	width: 28px;
	height: 28px;
}

.gb-btn--wa {
	background: #25d366;
	color: #fff;
	border-color: #25d366;
}

.gb-btn--wa:hover {
	background: #1fb958;
	border-color: #1fb958;
	color: #fff;
}

/* ------------------------------------------------------------- wa modal ---- */

.gb-modal[hidden] {
	display: none;
}

.gb-modal {
	position: fixed;
	inset: 0;
	z-index: 70;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.gb-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
}

.gb-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 440px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	padding: 26px 24px;
	border: 1px solid rgba(37, 211, 102, 0.5);
	border-radius: var(--gb-r-md);
	background: #2f2e2e;
	box-shadow: 0 0 46px rgba(37, 211, 102, 0.25);
}

.gb-modal__close {
	position: absolute;
	top: 10px;
	right: 12px;
	padding: 4px 10px;
	border: 0;
	background: none;
	color: var(--gb-on-dark-60);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.gb-modal__close:hover {
	color: var(--gb-on-dark);
}

.gb-modal__lead {
	margin: -8px 0 16px;
	color: var(--gb-on-dark-70);
	font-size: 15px;
}

body.gb-modal-open {
	overflow: hidden;
}

@media screen and (max-width: 640px) {
	.gb-whatsapp {
		width: 52px;
		height: 52px;
		left: 14px;
		bottom: 14px;
	}
}

/* While the consent banner is showing (production first visits only; staging
   never renders it), lift the WhatsApp float above it so the site's newest
   lead path is not hidden behind the cookie bar on a visitor's first pageview. */
body:has(.gb-consent:not([hidden])) .gb-whatsapp {
	bottom: 96px;
}

/* ------------------------------------------------------------------ faqs ---- */

.gb-faqs {
	padding: 64px 0 72px;
	background: var(--gb-black);
}

.gb-faqs__inner {
	max-width: 860px;
}

.gb-faqs__title {
	margin: 0 0 26px;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--gb-on-dark);
	text-wrap: balance;
}

.gb-faqs__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gb-faq {
	border: 1px solid var(--gb-line);
	border-radius: var(--gb-r-sm);
	background: var(--gb-fill);
	overflow: hidden;
}

.gb-faq[open] {
	border-color: var(--gb-red-edge);
	background: var(--gb-red-tint);
}

.gb-faq__q {
	position: relative;
	padding: 16px 46px 16px 18px;
	cursor: pointer;
	list-style: none;
	color: var(--gb-on-dark);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.4;
}

.gb-faq__q::-webkit-details-marker {
	display: none;
}

/* The plus that turns into a minus, drawn rather than shipped as an icon. */
.gb-faq__q::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
	color: var(--gb-red);
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
}

.gb-faq[open] .gb-faq__q::after {
	content: "\2212";
}

.gb-faq__a {
	padding: 0 18px 16px;
}

.gb-faq__a p {
	margin: 0;
	color: var(--gb-on-dark-70);
	font-size: 15.5px;
	line-height: 1.7;
}

@media screen and (max-width: 640px) {
	.gb-faqs {
		padding: 44px 0 52px;
	}

	.gb-faqs__title {
		font-size: 28px;
	}
}
