:root {
	--rb-bg: #020d1e;
	--rb-bg-alt: #071a35;
	--rb-text: #f6f3f4;
	--rb-muted: #d6d5dc;
	--rb-accent: #5f8fff;
	--rb-accent-dark: #113588;
	--rb-border: #8f929d;
	--rb-button-text: #fff;
	--rb-button-bg: #0b2b7d;
	--rb-button-hover: #174bc8;
	--rb-section-space: 24px;
	--rb-container: 1240px;
	--rb-serif: "Cormorant Garamond", "Baskerville", "Times New Roman", serif;
	--rb-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--rb-bg);
	color: var(--rb-text);
	font-family: var(--rb-sans);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--rb-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

a:hover {
	color: #fff;
}

button,
input {
	font: inherit;
}

.rb-container {
	width: min(calc(100% - 56px), var(--rb-container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: #fff;
	color: #00102b;
	font-weight: 700;
}

:focus-visible {
	outline: 3px solid #8fb4ff;
	outline-offset: 4px;
}

.rb-site-header {
	position: relative;
	z-index: 50;
	width: 100%;
	border-bottom: 1px solid rgb(255 255 255 / 8%);
	background: var(--rb-bg);
}

.home .rb-site-header {
	position: absolute;
	top: 0;
	left: 0;
	border-bottom: 0;
	background: linear-gradient(180deg, rgb(1 11 26 / 88%) 0%, transparent 100%);
}

.admin-bar.home .rb-site-header {
	top: 32px;
}

.rb-header-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 140px;
	padding-top: 18px;
	gap: 30px;
}

.rb-header-logo {
	position: relative;
	z-index: 2;
	display: inline-flex;
	flex: 0 0 235px;
	align-items: center;
	color: #fff;
	text-decoration: none;
}

.rb-header-logo img {
	width: 225px;
	max-height: 132px;
	object-fit: contain;
	object-position: left top;
}

.rb-primary-navigation {
	display: flex;
	align-items: center;
	gap: 28px;
	padding-top: 20px;
}

.rb-menu,
.rb-footer-menu {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.6vw, 38px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.rb-menu li {
	position: relative;
}

.rb-menu a,
.rb-footer-menu a {
	display: block;
	padding: 9px 0;
	color: #fff;
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: 0.035em;
	text-decoration: none;
	text-transform: uppercase;
}

.rb-menu > li > a::after {
	position: absolute;
	right: 50%;
	bottom: 0;
	left: 50%;
	height: 2px;
	content: "";
	background: var(--rb-accent);
	transition: right 180ms ease, left 180ms ease;
}

.rb-menu > li > a:hover::after,
.rb-menu > .current-menu-item > a::after {
	right: 0;
	left: 0;
}

.rb-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: -18px;
	display: none;
	min-width: 210px;
	padding: 12px 18px;
	margin: 0;
	list-style: none;
	background: #04132b;
	border: 1px solid var(--rb-border);
	box-shadow: 0 20px 50px rgb(0 0 0 / 35%);
}

.rb-menu li:hover > .sub-menu,
.rb-menu li:focus-within > .sub-menu {
	display: block;
}

.rb-header-cta,
.rb-button,
.rb-optin-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 24px;
	border: 1px solid rgb(255 255 255 / 75%);
	background: rgb(5 20 53 / 60%);
	color: var(--rb-button-text);
	font-family: var(--rb-sans);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.085em;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.rb-header-cta:hover,
.rb-button:hover,
.rb-optin-submit:hover {
	border-color: #fff;
	background: var(--rb-button-hover);
	color: #fff;
	transform: translateY(-1px);
}

.rb-menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	padding: 10px;
	border: 1px solid rgb(255 255 255 / 55%);
	background: rgb(3 17 43 / 80%);
}

.rb-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 6px 0;
	background: #fff;
	transition: transform 180ms ease, opacity 180ms ease;
}

.rb-hero {
	position: relative;
	min-height: clamp(660px, 55vw, 790px);
	overflow: hidden;
	background-color: #03132c;
	background-position: center;
	background-size: cover;
}

.rb-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgb(1 10 25 / 35%) 0%, rgb(1 10 25 / 5%) 55%, rgb(1 10 25 / 30%) 100%),
		linear-gradient(0deg, rgb(0 8 20 / 82%) 0%, transparent 33%);
}

.rb-hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(420px, 1.05fr) minmax(410px, 0.95fr);
	align-items: end;
	min-height: inherit;
	padding-top: 150px;
}

.rb-hero-copy {
	position: relative;
	z-index: 2;
	align-self: center;
	max-width: 650px;
	padding: 35px 0 78px 36px;
}

.rb-hero-title {
	margin: 0 0 8px;
	font-family: var(--rb-serif);
	font-size: clamp(2.25rem, 4vw, 4rem);
	font-weight: 400;
	letter-spacing: 0.018em;
	line-height: 1.08;
	text-transform: uppercase;
	text-shadow: 0 2px 24px rgb(0 0 0 / 35%);
}

.rb-hero-title span {
	display: block;
}

.rb-hero-title__accent {
	color: var(--rb-accent);
}

.rb-hero-subtitle {
	margin: 8px 0 24px 54px;
	color: var(--rb-muted);
	font-family: var(--rb-serif);
	font-size: clamp(1.15rem, 1.8vw, 1.55rem);
	letter-spacing: 0.06em;
}

.rb-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-left: 8px;
}

.rb-button {
	gap: 24px;
	min-width: 220px;
}

.rb-button--primary {
	background: linear-gradient(90deg, var(--rb-button-bg), #0b3068);
	border-color: #7fa4ff;
	box-shadow: 0 7px 20px rgb(0 0 0 / 28%);
}

.rb-button--outline {
	background: rgb(0 6 17 / 58%);
}

.rb-button__arrow {
	font-size: 1.45rem;
	line-height: 0;
}

.rb-hero-portrait {
	position: absolute;
	right: -20px;
	bottom: 0;
	z-index: 1;
	width: min(58%, 745px);
	pointer-events: none;
}

.rb-hero-portrait img {
	width: 100%;
	max-height: 710px;
	object-fit: contain;
	object-position: right bottom;
	filter: drop-shadow(-18px 15px 28px rgb(0 0 0 / 30%));
}

.rb-section {
	padding-block: var(--rb-section-space);
}

.rb-bordered-panel,
.rb-split-card {
	border: 1px solid var(--rb-border);
	background:
		radial-gradient(circle at 60% 0%, rgb(24 69 150 / 16%), transparent 50%),
		linear-gradient(135deg, rgb(5 23 49 / 94%), rgb(2 13 30 / 98%));
	box-shadow: inset 0 0 65px rgb(0 34 84 / 15%);
}

.rb-bordered-panel {
	padding: 24px clamp(26px, 4vw, 58px) 22px;
}

.rb-ornament-title {
	display: flex;
	align-items: center;
	gap: 22px;
	justify-content: center;
	margin: 0 0 22px;
	font-family: var(--rb-serif);
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	font-weight: 400;
	letter-spacing: 0.055em;
	line-height: 1.15;
	text-align: center;
	text-transform: uppercase;
}

.rb-ornament-title::after {
	width: 48px;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, var(--rb-accent), transparent);
}

.rb-ornament-title--small {
	gap: 12px;
	margin-bottom: 16px;
	font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.rb-ornament-title--small::before,
.rb-ornament-title--small::after {
	flex: 1;
	max-width: 55px;
	height: 1px;
	content: "";
	background: var(--rb-border);
}

.rb-book-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(18px, 2.6vw, 34px);
}

.rb-book-card {
	overflow: hidden;
	border: 1px solid var(--rb-border);
	background: #06142b;
	box-shadow: 0 10px 25px rgb(0 0 0 / 35%);
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.rb-book-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 35px rgb(0 0 0 / 48%);
}

.rb-book-card a {
	display: block;
}

.rb-book-card img {
	width: 100%;
	aspect-ratio: 0.655;
	object-fit: cover;
}

.rb-series-description {
	max-width: 920px;
	margin: 24px auto 12px;
	color: var(--rb-muted);
	font-family: var(--rb-serif);
	font-size: 1.15rem;
	letter-spacing: 0.06em;
	line-height: 1.35;
	text-align: center;
}

.rb-series-description p {
	margin: 0;
}

.rb-centered-button {
	display: flex;
	justify-content: center;
}

.rb-centered-button .rb-button {
	min-height: 44px;
}

.rb-paired-sections {
	display: grid;
	grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.45fr);
	gap: 18px;
	padding-block: 0 var(--rb-section-space);
}

.rb-paired-sections > .rb-section {
	padding: 20px;
}

.rb-split-card {
	position: relative;
	min-height: 395px;
}

.rb-start-content {
	display: grid;
	grid-template-columns: minmax(120px, 0.9fr) minmax(145px, 1fr);
	gap: 22px;
	align-items: start;
}

.rb-start-cover {
	width: 100%;
	border: 1px solid var(--rb-border);
	box-shadow: 0 12px 24px rgb(0 0 0 / 30%);
}

.rb-start-copy h3 {
	margin: 6px 0 0;
	font-family: var(--rb-sans);
	font-size: 1.06rem;
	font-weight: 500;
	text-transform: uppercase;
}

.rb-book-label {
	margin: 0 0 10px;
	color: var(--rb-muted);
	font-size: 0.88rem;
	text-transform: uppercase;
}

.rb-start-description {
	font-size: 0.94rem;
	line-height: 1.45;
}

.rb-start-description p {
	margin: 0 0 14px;
}

.rb-start-copy .rb-button {
	min-width: 0;
	min-height: 44px;
	padding: 10px 18px;
	font-size: 0.82rem;
}

.rb-about-section {
	display: grid;
	grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.8fr);
	align-items: stretch;
	overflow: hidden;
	padding: 0 !important;
}

.rb-about-copy {
	position: relative;
	z-index: 2;
	padding: 20px 0 18px 28px;
}

.rb-about-copy::after {
	position: absolute;
	inset: 10% -55% 0 35%;
	z-index: -1;
	content: "";
	background: radial-gradient(circle, rgb(24 72 177 / 42%), transparent 67%);
	filter: blur(15px);
}

.rb-about-copy h2 {
	margin: 0 0 10px;
	font-family: var(--rb-serif);
	font-size: clamp(1.7rem, 2.7vw, 2.25rem);
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.rb-about-text {
	max-width: 475px;
	font-size: 0.97rem;
	letter-spacing: 0.045em;
	line-height: 1.38;
}

.rb-about-text p {
	margin: 0 0 12px;
}

.rb-signature {
	margin: 4px 0 0;
	font-family: "Brush Script MT", "Segoe Script", cursive;
	font-size: 2rem;
	line-height: 1;
}

.rb-about-image {
	position: relative;
	align-self: end;
	height: 100%;
	min-height: 390px;
}

.rb-about-image::before {
	position: absolute;
	inset: 0 auto 0 0;
	z-index: 1;
	width: 38%;
	content: "";
	background: linear-gradient(90deg, #061a3c, transparent);
}

.rb-about-image img {
	width: 100%;
	height: 100%;
	min-height: 390px;
	object-fit: cover;
	object-position: center top;
}

.rb-optin-section {
	border-top: 1px solid var(--rb-border);
	border-bottom: 1px solid var(--rb-border);
	background:
		linear-gradient(90deg, rgb(20 48 93 / 15%), rgb(16 56 116 / 25%)),
		var(--rb-bg-alt);
}

.rb-optin-inner {
	display: grid;
	grid-template-columns: minmax(360px, 1fr) minmax(480px, 1.4fr);
	gap: 55px;
	align-items: center;
	min-height: 135px;
	padding-block: 18px;
}

.rb-optin-heading {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 20px;
	align-items: center;
}

.rb-optin-heading img {
	width: 65px;
	height: 52px;
	object-fit: contain;
}

.rb-optin-heading h2 {
	margin: 0;
	font-family: var(--rb-serif);
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 400;
	letter-spacing: 0.045em;
	line-height: 1;
	text-transform: uppercase;
}

.rb-optin-heading p {
	margin: 4px 0 0;
	font-size: 0.88rem;
	line-height: 1.3;
}

.rb-optin-form {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 190px;
	gap: 28px;
	align-items: center;
}

.rb-optin-fields {
	display: grid;
	gap: 8px;
}

.rb-optin-fields input {
	width: 100%;
	height: 40px;
	padding: 8px 14px;
	border: 1px solid var(--rb-border);
	border-radius: 0;
	background: rgb(1 12 29 / 76%);
	color: #fff;
}

.rb-optin-fields input::placeholder {
	color: #bbc3d5;
	opacity: 1;
}

.rb-optin-submit {
	min-height: 55px;
	cursor: pointer;
	background: var(--rb-button-bg);
}

.rb-optin-success {
	grid-column: 1 / -1;
	margin: 0;
	color: #b9d0ff;
	font-size: 0.9rem;
}

.rb-testimonials-section {
	position: relative;
	overflow: hidden;
	padding: 18px 0 30px;
	background-color: #06152f;
	background-position: center 55%;
	background-size: cover;
}

.rb-testimonials-section::before {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, rgb(0 8 22 / 82%), rgb(0 10 26 / 72%), rgb(0 8 22 / 78%));
}

.rb-spectrum-line {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2;
	height: 4px;
	background: linear-gradient(90deg, #ff2a3c, #ff981a, #f3e63a, #29cc62, #35a9ff, #7437ff, #ff34b8);
}

.rb-testimonial-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 42px;
	padding-top: 12px;
}

.rb-testimonial {
	min-height: 150px;
	padding: 28px 34px 20px;
	margin: 0;
	border: 1px solid var(--rb-border);
	background: rgb(1 11 26 / 67%);
}

.rb-testimonial blockquote {
	position: relative;
	margin: 0 0 16px;
	padding-left: 22px;
	font-family: var(--rb-serif);
	font-size: 1.22rem;
	line-height: 1.45;
}

.rb-quote-mark {
	position: absolute;
	top: -12px;
	left: -4px;
	color: #266cff;
	font-family: Georgia, serif;
	font-size: 3rem;
	font-weight: 700;
}

.rb-testimonial figcaption {
	padding-left: 22px;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rb-basketball {
	position: absolute;
	right: -46px;
	bottom: -42px;
	z-index: 3;
	width: 145px;
	height: 145px;
	border: 2px solid rgb(142 95 85 / 80%);
	border-radius: 50%;
	background:
		linear-gradient(25deg, transparent 47%, #171a28 48%, #171a28 52%, transparent 53%),
		linear-gradient(155deg, transparent 47%, #171a28 48%, #171a28 52%, transparent 53%),
		radial-gradient(circle at 35% 25%, #645468, #2b2940 58%, #12172a);
	box-shadow: -8px -8px 24px rgb(103 109 170 / 20%);
	opacity: 0.82;
}

.rb-site-footer {
	border-top: 1px solid var(--rb-border);
	background:
		radial-gradient(circle at 18% 20%, rgb(21 71 159 / 19%), transparent 35%),
		#020d1e;
}

.rb-footer-main {
	display: grid;
	grid-template-columns: 1fr 0.95fr;
	gap: 70px;
	align-items: center;
	padding-block: 28px 16px;
}

.rb-footer-brand img {
	width: min(100%, 520px);
	max-height: 150px;
	object-fit: contain;
	object-position: left bottom;
}

.rb-footer-brand p {
	margin: -6px 0 0 90px;
	font-family: var(--rb-serif);
	font-size: 0.95rem;
}

.rb-footer-connect h2 {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 15px;
	font-family: var(--rb-serif);
	font-size: 1.3rem;
	font-weight: 400;
	text-transform: uppercase;
}

.rb-footer-connect h2::before,
.rb-footer-connect h2::after {
	width: 80px;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, transparent, var(--rb-accent));
}

.rb-footer-connect h2::after {
	background: linear-gradient(90deg, var(--rb-accent), transparent);
}

.rb-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
}

.rb-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	overflow: hidden;
	border: 2px solid #7194e5;
	border-radius: 50%;
	color: #aac1ff;
	font-size: 1.35rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 180ms ease, transform 180ms ease;
}

.rb-social-links a:hover {
	background: var(--rb-button-bg);
	color: #fff;
	transform: translateY(-2px);
}

.rb-social-links img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rb-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding-block: 14px 18px;
	border-top: 1px solid rgb(143 146 157 / 75%);
}

.rb-footer-bottom p {
	margin: 0;
	color: #b8becc;
	font-family: var(--rb-serif);
	font-size: 0.83rem;
}

.rb-footer-menu {
	gap: 24px;
}

.rb-footer-menu a {
	color: #7fa7ff;
	font-size: 0.78rem;
}

.rb-content {
	min-height: 55vh;
	padding-block: 70px;
}

.rb-content-header h1,
.rb-entry-title,
.rb-not-found h1 {
	font-family: var(--rb-serif);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 400;
	letter-spacing: 0.03em;
}

.rb-entry {
	padding: 30px 0;
	border-bottom: 1px solid var(--rb-border);
}

.rb-entry-title a {
	color: #fff;
	text-decoration: none;
}

.rb-entry--single {
	max-width: 900px;
	margin-inline: auto;
}

.rb-entry-content > * {
	max-width: 100%;
}

.rb-entry-meta {
	margin-top: -20px;
	color: var(--rb-muted);
}

.rb-entry-image {
	margin: 30px 0;
}

.rb-comments {
	max-width: 900px;
	padding-top: 35px;
	margin: 30px auto 0;
	border-top: 1px solid var(--rb-border);
}

.rb-comments-title {
	font-family: var(--rb-serif);
	font-size: 2rem;
	font-weight: 400;
}

.rb-comment-list {
	padding-left: 24px;
}

.rb-comment-list li {
	margin-bottom: 22px;
}

.rb-comments input:not([type="submit"]),
.rb-comments textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--rb-border);
	background: #06152b;
	color: #fff;
}

.rb-comments input[type="submit"] {
	padding: 12px 22px;
	border: 1px solid #7fa4ff;
	background: var(--rb-button-bg);
	color: #fff;
	cursor: pointer;
}

@media (max-width: 1100px) {
	.rb-header-inner {
		align-items: flex-start;
	}

	.rb-primary-navigation {
		gap: 16px;
	}

	.rb-menu {
		gap: 18px;
	}

	.rb-header-cta {
		padding-inline: 16px;
	}

	.rb-hero-inner {
		grid-template-columns: 1fr 0.78fr;
	}

	.rb-hero-copy {
		padding-left: 0;
	}

	.rb-hero-portrait {
		right: -90px;
		width: 65%;
	}

	.rb-paired-sections {
		grid-template-columns: 0.9fr 1.25fr;
	}

	.rb-about-section {
		grid-template-columns: 1fr 0.7fr;
	}

	.rb-about-copy {
		padding-left: 22px;
	}

	.rb-optin-inner {
		grid-template-columns: 1fr 1.1fr;
		gap: 30px;
	}

	.rb-optin-form {
		grid-template-columns: 1fr 160px;
		gap: 16px;
	}
}

@media (max-width: 900px) {
	.admin-bar.home .rb-site-header {
		top: 46px;
	}

	.rb-container {
		width: min(calc(100% - 36px), var(--rb-container));
	}

	.rb-header-inner {
		min-height: 105px;
		padding-top: 10px;
	}

	.rb-header-logo {
		flex-basis: 175px;
	}

	.rb-header-logo img {
		width: 168px;
		max-height: 95px;
	}

	.rb-menu-toggle {
		position: relative;
		z-index: 60;
		display: block;
		margin-top: 14px;
		cursor: pointer;
	}

	.rb-menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
		transform: translateY(8px) rotate(45deg);
	}

	.rb-menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
		opacity: 0;
	}

	.rb-menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.rb-primary-navigation {
		position: fixed;
		inset: 0;
		z-index: 55;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
		padding: 100px 34px 45px;
		background: rgb(2 13 30 / 98%);
		visibility: hidden;
		opacity: 0;
		transform: translateY(-14px);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
	}

	.rb-primary-navigation.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.rb-menu {
		flex-direction: column;
		gap: 5px;
		width: 100%;
	}

	.rb-menu a {
		padding: 12px;
		font-family: var(--rb-serif);
		font-size: 1.65rem;
		text-align: center;
	}

	.rb-menu .sub-menu {
		position: static;
		display: block;
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.rb-menu .sub-menu a {
		font-size: 1.15rem;
	}

	.rb-header-cta {
		align-self: center;
	}

	.rb-hero {
		min-height: 760px;
	}

	.rb-hero-inner {
		display: block;
		padding-top: 110px;
	}

	.rb-hero-copy {
		max-width: 570px;
		padding-top: 50px;
	}

	.rb-hero-title {
		font-size: clamp(2.1rem, 6.3vw, 3.2rem);
	}

	.rb-hero-subtitle {
		margin-left: 0;
	}

	.rb-hero-portrait {
		right: -110px;
		width: 70%;
		opacity: 0.72;
	}

	.rb-book-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rb-paired-sections {
		grid-template-columns: 1fr;
	}

	.rb-about-section {
		grid-template-columns: 1fr 0.8fr;
	}

	.rb-optin-inner {
		grid-template-columns: 1fr;
		gap: 22px;
		padding-block: 26px;
	}

	.rb-optin-form {
		grid-template-columns: 1fr 190px;
	}

	.rb-footer-main {
		gap: 30px;
	}

	.rb-footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 640px) {
	.rb-container {
		width: min(calc(100% - 24px), var(--rb-container));
	}

	.rb-header-logo {
		flex-basis: 145px;
	}

	.rb-header-logo img {
		width: 140px;
	}

	.rb-hero {
		min-height: 720px;
		background-position: 40% center;
	}

	.rb-hero-overlay {
		background: linear-gradient(180deg, rgb(1 10 25 / 15%), rgb(1 10 25 / 82%) 75%, rgb(0 8 20 / 96%));
	}

	.rb-hero-copy {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		min-height: 700px;
		padding: 250px 0 36px;
	}

	.rb-hero-title {
		font-size: clamp(1.8rem, 8.5vw, 2.55rem);
		text-align: center;
	}

	.rb-hero-subtitle {
		font-size: 1.05rem;
		text-align: center;
	}

	.rb-button-row {
		flex-direction: column;
		align-items: stretch;
		margin: 0;
	}

	.rb-button {
		width: 100%;
		min-width: 0;
	}

	.rb-hero-portrait {
		top: 90px;
		right: 50%;
		bottom: auto;
		width: 100%;
		max-width: 510px;
		opacity: 1;
		transform: translateX(50%);
	}

	.rb-hero-portrait img {
		max-height: 390px;
	}

	.rb-bordered-panel {
		padding: 20px 14px;
	}

	.rb-ornament-title {
		gap: 10px;
		font-size: 1.65rem;
	}

	.rb-ornament-title::after {
		width: 20px;
	}

	.rb-book-grid {
		gap: 12px;
	}

	.rb-series-description {
		font-size: 1rem;
	}

	.rb-paired-sections {
		width: min(calc(100% - 24px), var(--rb-container));
	}

	.rb-start-content {
		grid-template-columns: 0.75fr 1fr;
		gap: 14px;
	}

	.rb-about-section {
		display: block;
	}

	.rb-about-copy {
		padding: 22px;
	}

	.rb-about-image {
		min-height: 320px;
	}

	.rb-about-image img {
		min-height: 320px;
	}

	.rb-optin-heading {
		grid-template-columns: 55px 1fr;
		gap: 12px;
	}

	.rb-optin-heading img {
		width: 50px;
	}

	.rb-optin-form {
		grid-template-columns: 1fr;
	}

	.rb-optin-submit {
		width: 100%;
	}

	.rb-testimonial-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.rb-testimonial {
		padding: 24px 20px 18px;
	}

	.rb-basketball {
		width: 95px;
		height: 95px;
	}

	.rb-footer-main {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.rb-footer-brand img {
		margin-inline: auto;
	}

	.rb-footer-brand p {
		margin: 4px 0 0;
	}

	.rb-footer-connect h2 {
		justify-content: center;
	}

	.rb-footer-menu {
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px 18px;
	}
}

@media (max-width: 420px) {
	.rb-book-grid {
		grid-template-columns: 1fr;
		max-width: 300px;
		margin-inline: auto;
	}

	.rb-start-content {
		grid-template-columns: 1fr;
	}

	.rb-start-cover {
		max-width: 230px;
		margin-inline: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
