/* =========================================================================
   Rubasha Executive Transport — landing page styles
   Palette: ink / charcoal / white / muted gold. Editorial, discreet, cinematic.
   Mobile-first. All tokens as CSS variables.
   ========================================================================= */

:root {
	/* Color */
	--rb-ink: #0b0b0c;
	--rb-coal: #141419;
	--rb-coal-2: #1b1b21;
	--rb-white: #ffffff;
	--rb-ivory: #f1efe9;
	--rb-text-dark: #17171a;
	--rb-text-muted-dark: #55555c;
	--rb-text-light: #eeece6;
	--rb-text-muted-light: rgba(238, 236, 230, 0.62);
	--rb-gold: #b08d57;
	--rb-gold-soft: #cbaa72;
	--rb-gold-deep: #8f6f3f;
	--rb-hairline-dark: rgba(238, 236, 230, 0.14);
	--rb-hairline-light: rgba(23, 23, 26, 0.14);

	/* Type */
	--rb-font-display: "Zodiak", "Georgia", "Times New Roman", serif;
	--rb-font-body: "Satoshi", "Segoe UI", system-ui, sans-serif;
	--rb-fs-hero: clamp(2.5rem, 7.5vw, 5.25rem);
	--rb-fs-h2: clamp(2rem, 5vw, 3.5rem);
	--rb-fs-h3: clamp(1.15rem, 2vw, 1.35rem);
	--rb-fs-body: 1.0625rem;
	--rb-fs-small: 0.8125rem;
	--rb-track-caps: 0.22em;

	/* Layout */
	--rb-container: min(1200px, 92vw);
	--rb-section-y: clamp(4.5rem, 10vw, 8.5rem);
	--rb-gap: clamp(1.25rem, 3vw, 2.5rem);
	--rb-radius: 2px;
	--rb-header-h: 76px;

	color-scheme: dark;
}

/* ------------------------------------------------------------------ base */

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--rb-header-h) + 12px);
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
}

body.rb-body {
	margin: 0;
	background: var(--rb-ink);
	color: var(--rb-text-light);
	font-family: var(--rb-font-body);
	font-size: var(--rb-fs-body);
	font-weight: 300;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* Prevent horizontal scroll on any element */
.rb-body * {
	box-sizing: border-box;
	max-width: 100%;
}

/* Improve section spacing on mobile */
@media (max-width: 768px) {
	:root {
		--rb-section-y: 3.5rem;
	}
}

/* Adjust hero font size for very small screens */
@media (max-width: 480px) {
	:root {
		--rb-fs-hero: clamp(2rem, 10vw, 2.75rem);
	}
}

/* Make form fields touch-friendly */
.rb-form__field input,
.rb-form__field select,
.rb-form__field textarea {
	min-height: 3rem;
	touch-action: manipulation;
}

/* Make sure CTA buttons stack nicely on mobile */
@media (max-width: 640px) {
	.rb-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.rb-final__actions {
		flex-direction: column;
		align-items: stretch;
	}
}

.rb-body *,
.rb-body *::before,
.rb-body *::after { box-sizing: border-box; }

.rb-body img { max-width: 100%; height: auto; display: block; }

.rb-body a {
	color: inherit;
	text-decoration: none !important;
	text-underline-offset: 0;
}

.rb-body h1,
.rb-body h2,
.rb-body h3 {
	margin: 0;
	font-weight: 400;
}

.rb-body p { margin: 0 0 1em; }
.rb-body p:last-child { margin-bottom: 0; }

.rb-container {
	width: var(--rb-container);
	margin-inline: auto;
}

.rb-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	padding: 0.75rem 1.25rem;
	background: var(--rb-gold);
	color: var(--rb-ink);
}

.rb-skip-link:focus {
	left: 0;
}

.rb-body :focus-visible {
	outline: 2px solid var(--rb-gold);
	outline-offset: 3px;
}

/* Signature: gold route line drawn down the left edge as you travel the page */
.rb-route-line {
	position: fixed;
	left: max(18px, calc((100vw - var(--rb-container)) / 2 - 44px));
	top: 0;
	width: 1px;
	height: 100vh;
	background: linear-gradient(to bottom, transparent, var(--rb-gold) 12%, var(--rb-gold) 88%, transparent);
	transform: scaleY(0);
	transform-origin: top center;
	opacity: 0.55;
	pointer-events: none;
	z-index: 5;
	display: none;
}

@media (min-width: 1100px) {
	.rb-route-line { display: block; }
}

/* --------------------------------------------------------------- eyebrow */

.rb-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	margin: 0 0 1.4rem;
	font-size: var(--rb-fs-small);
	font-weight: 500;
	letter-spacing: var(--rb-track-caps);
	text-transform: uppercase;
	color: var(--rb-gold);
}

.rb-eyebrow::before {
	content: "";
	width: 2.25rem;
	height: 1px;
	background: var(--rb-gold);
	flex: none;
}

/* --------------------------------------------------------------- buttons */

.rb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.95rem 2rem;
	border: 1px solid transparent;
	border-radius: var(--rb-radius);
	font-family: var(--rb-font-body);
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.rb-btn--gold {
	background: var(--rb-gold);
	border-color: var(--rb-gold);
	color: var(--rb-ink);
	box-shadow: 0 8px 24px rgba(176, 141, 87, 0.2);
}

.rb-btn--gold:hover {
	background: var(--rb-gold-soft);
	border-color: var(--rb-gold-soft);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(176, 141, 87, 0.3);
}

.rb-btn--gold:active {
	transform: translateY(0);
	box-shadow: 0 4px 16px rgba(176, 141, 87, 0.25);
}

.rb-btn--ghost {
	background: transparent;
	border-color: var(--rb-hairline-dark);
	color: var(--rb-text-light);
}

.rb-btn--ghost:hover {
	border-color: var(--rb-gold);
	color: var(--rb-gold-soft);
	box-shadow: 0 0 0 1px rgba(176, 141, 87, 0.2);
}

.rb-section--light .rb-btn--ghost {
	border-color: var(--rb-hairline-light);
	color: var(--rb-text-dark);
}

.rb-section--light .rb-btn--ghost:hover {
	border-color: var(--rb-gold-deep);
	color: var(--rb-gold-deep);
	box-shadow: 0 0 0 1px rgba(143, 111, 63, 0.2);
}

.rb-btn--sm { padding: 0.7rem 1.3rem; font-size: 0.8125rem; }
.rb-btn--lg { padding: 1.1rem 2.5rem; }
.rb-btn--wide { width: 100%; }

.rb-btn__detail {
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	opacity: 0.7;
	text-transform: none;
}

/* ---------------------------------------------------------------- header */

.rb-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	height: var(--rb-header-h);
	display: flex;
	align-items: center;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background-color 0.35s ease, border-color 0.35s ease, height 0.35s ease;
}

.rb-header.is-scrolled {
	--rb-header-h: 64px;
	background: rgba(11, 11, 12, 0.96);
	backdrop-filter: blur(12px);
	border-bottom-color: var(--rb-gold);
}

.rb-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.rb-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
}

.rb-logo__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid var(--rb-gold);
	border-radius: var(--rb-radius);
	font-family: var(--rb-font-display);
	font-size: 1.5rem;
	line-height: 1;
	color: var(--rb-gold);
	flex: none;
}

.rb-logo__text { display: flex; flex-direction: column; line-height: 1.2; }

.rb-logo__name {
	font-family: var(--rb-font-display);
	font-size: 1.35rem;
	letter-spacing: 0.04em;
	color: var(--rb-text-light);
}

.rb-logo__tagline {
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--rb-gold);
}

.rb-nav { display: none; gap: 2.25rem; }

.rb-nav a {
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rb-text-muted-light);
	transition: color 0.25s ease;
}

.rb-nav a:hover { color: var(--rb-gold-soft); }

.rb-header__actions { display: flex; align-items: center; gap: 1.25rem; }

.rb-header__phone {
	display: none;
	font-size: 0.9375rem;
	letter-spacing: 0.04em;
	color: var(--rb-text-light);
	transition: color 0.25s ease;
}

.rb-header__phone:hover { color: var(--rb-gold-soft); }

@media (min-width: 700px) {
	.rb-header__phone { display: inline-block; }
}

@media (min-width: 1000px) {
	.rb-nav { display: flex; }
}

/* ------------------------------------------------------------------ hero */

.rb-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding: calc(var(--rb-header-h) + 3rem) 0 5rem;
	overflow: hidden;
}

.rb-hero__backdrop {
	position: absolute;
	inset: -12% 0;
	z-index: 0;
}

.rb-hero__media,
.rb-hero__media img,
.rb-hero__media .rb-media__placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
}

.rb-hero__scrim {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at top left, rgba(176, 141, 87, 0.12) 0%, transparent 55%),
		linear-gradient(to right, rgba(11, 11, 12, 0.96) 0%, rgba(11, 11, 12, 0.82) 50%, rgba(11, 11, 12, 0.45) 100%),
		linear-gradient(to top, var(--rb-ink) 0%, transparent 40%);
}

.rb-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 780px;
	margin-left: calc((100vw - var(--rb-container)) / 2);
	width: var(--rb-container);
}

.rb-hero__headline {
	font-family: var(--rb-font-display);
	font-size: var(--rb-fs-hero);
	font-weight: 300;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--rb-white);
	margin: 0 0 1.5rem;
	max-width: 15ch;
	text-wrap: balance;
}

.rb-hero__copy {
	max-width: 46ch;
	font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
	color: var(--rb-text-muted-light);
	margin-bottom: 2.25rem;
}

.rb-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-bottom: 1.75rem;
}

.rb-hero__note {
	font-size: var(--rb-fs-small);
	letter-spacing: 0.06em;
	color: var(--rb-text-muted-light);
}

.rb-hero__scroll-cue {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.rb-hero__scroll-cue span {
	display: block;
	width: 1px;
	height: 3.25rem;
	background: linear-gradient(to bottom, var(--rb-gold), transparent);
}

/* ----------------------------------------------------------- trust strip */

.rb-trust {
	background: var(--rb-coal);
	border-block: 1px solid var(--rb-hairline-dark);
	padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.rb-trust__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem var(--rb-gap);
}

.rb-trust__item { border-left: 1px solid var(--rb-gold); padding-left: 1.25rem; }

.rb-trust__title {
	font-family: var(--rb-font-body);
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rb-gold-soft);
	margin-bottom: 0.5rem;
}

.rb-trust__item p {
	font-size: 0.9375rem;
	color: var(--rb-text-muted-light);
}

@media (min-width: 640px) {
	.rb-trust__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
	.rb-trust__grid { grid-template-columns: repeat(4, 1fr); }
}

/* -------------------------------------------------------------- sections */

.rb-section { padding: var(--rb-section-y) 0; }

.rb-section--dark { background: var(--rb-ink); color: var(--rb-text-light); }

.rb-section--light {
	background: var(--rb-ivory);
	color: var(--rb-text-dark);
	color-scheme: light;
}

.rb-section--light p { color: var(--rb-text-muted-dark); }

.rb-section__head { max-width: 640px; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }

.rb-section__title {
	font-family: var(--rb-font-display);
	font-size: var(--rb-fs-h2);
	font-weight: 300;
	line-height: 1.12;
	letter-spacing: -0.01em;
	color: currentColor;
	text-wrap: balance;
}

.rb-section__title em {
	font-style: italic;
	color: var(--rb-gold);
}

.rb-section--light .rb-section__title { color: var(--rb-text-dark); }
.rb-section--light .rb-section__title em { color: var(--rb-gold-deep); }

/* -------------------------------------------------------------- services */

.rb-services__list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--rb-hairline-light);
}

.rb-service {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.6rem 3rem;
	padding: clamp(1.5rem, 3.5vw, 2.25rem) 0;
	border-bottom: 1px solid var(--rb-hairline-light);
	transition: background-color 0.3s ease;
}

.rb-service h3 {
	font-family: var(--rb-font-display);
	font-size: clamp(1.4rem, 2.6vw, 1.8rem);
	font-weight: 400;
	color: var(--rb-text-dark);
	transition: color 0.3s ease;
}

.rb-service:hover h3 { color: var(--rb-gold-deep); }

.rb-service__route {
	display: block;
	margin-top: 0.35rem;
	font-size: var(--rb-fs-small);
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rb-gold-deep);
}

.rb-service__desc {
	font-size: 0.9875rem;
	max-width: 52ch;
}

.rb-service__link {
	font-size: var(--rb-fs-small);
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rb-text-dark);
	align-self: center;
	justify-self: start;
	border-bottom: 1px solid var(--rb-gold);
	padding-bottom: 0.2rem;
	transition: color 0.25s ease;
	white-space: nowrap;
}

.rb-service__link:hover { color: var(--rb-gold-deep); }

@media (min-width: 900px) {
	.rb-service { grid-template-columns: minmax(240px, 1fr) 2fr auto; align-items: center; }
	.rb-service__desc { margin: 0; }
}

/* ----------------------------------------------------------------- about */

.rb-about__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}

.rb-about__media { position: relative; }

.rb-about__media .rb-media {
	margin: 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--rb-radius);
}

.rb-about__facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--rb-gap);
	margin: 2.5rem 0 0;
	padding-top: 2rem;
	border-top: 1px solid var(--rb-hairline-dark);
}

.rb-about__facts dt {
	font-family: var(--rb-font-display);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 300;
	color: var(--rb-gold);
	line-height: 1.1;
}

.rb-about__facts dd {
	margin: 0.4rem 0 0;
	font-size: 0.875rem;
	color: var(--rb-text-muted-light);
}

@media (min-width: 960px) {
	.rb-about__grid { grid-template-columns: 5fr 6fr; }
}

/* --------------------------------------------------------- media helpers */

.rb-media { margin: 0; }

.rb-media img, .rb-media video { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------- Icons */
.rb-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--rb-gold);
}

/* ---------------------------------------------------------------- Trust strip items with icons */
.rb-trust__item {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

/* ---------------------------------------------------------------- Why choose us items with icons */
.rb-why__item {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

/* ---------------------------------------------------------------- Contact items with icons */
.rb-contact__item {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

/* ---------------------------------------------------------------- Back to top button */
.rb-back-to-top {
	position: fixed;
	right: 2rem;
	bottom: 6rem;
	z-index: 95;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	background: var(--rb-coal);
	border: 1px solid var(--rb-hairline-dark);
	border-radius: var(--rb-radius);
	color: var(--rb-text-light);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(1rem);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
}

.rb-back-to-top:hover {
	background: var(--rb-coal-2);
	border-color: var(--rb-gold);
}

.rb-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@media (max-width: 899px) {
	.rb-back-to-top {
		bottom: 6.5rem;
		right: 1rem;
		width: 3rem;
		height: 3rem;
	}
}

.rb-media__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 240px;
	background:
		radial-gradient(120% 90% at 15% 10%, rgba(176, 141, 87, 0.16), transparent 55%),
		linear-gradient(150deg, var(--rb-coal-2), var(--rb-ink));
	border: 1px solid var(--rb-hairline-dark);
	border-radius: var(--rb-radius);
}

.rb-media__placeholder span {
	font-size: var(--rb-fs-small);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(203, 170, 114, 0.55);
	border: 1px solid rgba(176, 141, 87, 0.35);
	padding: 0.55rem 1.1rem;
	border-radius: var(--rb-radius);
}

/* ---------------------------------------------------------- visual break */

.rb-visual {
	position: relative;
	background: var(--rb-ink);
	padding-bottom: var(--rb-section-y);
}

.rb-visual__frame {
	position: relative;
	height: clamp(320px, 62vh, 620px);
	overflow: hidden;
}

.rb-visual__mover {
	position: absolute;
	inset: 0;
}

.rb-visual__media,
.rb-visual__media img,
.rb-visual__media .rb-media__placeholder {
	position: absolute;
	inset: -12% 0;
	height: auto;
	min-height: 124%;
	width: 100%;
	object-fit: cover;
	border: 0;
	border-radius: 0;
}

.rb-visual__caption {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 1rem 2.5rem;
	padding-top: 1.75rem;
	border-bottom: 1px solid var(--rb-hairline-dark);
	padding-bottom: 1.75rem;
}

.rb-visual__caption .rb-eyebrow { margin: 0; }

.rb-visual__line {
	font-family: var(--rb-font-display);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 300;
	color: var(--rb-text-light);
}

/* --------------------------------------------------------------- booking */

.rb-booking { background: var(--rb-coal); }

.rb-booking__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: start;
}

.rb-booking__lede {
	max-width: 40ch;
	color: var(--rb-text-muted-light);
	margin-bottom: 1.75rem;
}

.rb-booking__direct { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.rb-booking__panel {
	background: var(--rb-coal-2);
	border: 1px solid var(--rb-hairline-dark);
	border-top: 2px solid var(--rb-gold);
	border-radius: var(--rb-radius);
	padding: clamp(1.5rem, 4vw, 2.75rem);
}

@media (min-width: 960px) {
	.rb-booking__grid { grid-template-columns: 2fr 3fr; }
	.rb-booking__head { position: sticky; top: calc(var(--rb-header-h) + 2rem); }
}

/* form */

.rb-form__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.rb-form__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0 1.25rem;
}

@media (min-width: 560px) {
	.rb-form__row { grid-template-columns: 1fr 1fr; }
}

.rb-form__field { display: flex; flex-direction: column; margin: 0 0 1.35rem; }

.rb-form__field label {
	font-size: var(--rb-fs-small);
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rb-text-muted-light);
	margin-bottom: 0.5rem;
}

.rb-form__field label span { color: var(--rb-gold); }

.rb-form__field input,
.rb-form__field select,
.rb-form__field textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--rb-hairline-dark);
	border-radius: var(--rb-radius);
	color: var(--rb-text-light);
	font-family: var(--rb-font-body);
	font-size: 1rem;
	font-weight: 300;
	padding: 0.8rem 1rem;
	transition: border-color 0.25s ease, background-color 0.25s ease;
}

.rb-form__field input::placeholder,
.rb-form__field textarea::placeholder { color: rgba(238, 236, 230, 0.32); }

.rb-form__field input:focus,
.rb-form__field select:focus,
.rb-form__field textarea:focus {
	outline: none;
	border-color: var(--rb-gold);
	background: rgba(255, 255, 255, 0.07);
	box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.15);
}

.rb-form__field select option { background: var(--rb-coal-2); }

.rb-form__field textarea { resize: vertical; min-height: 110px; }

.rb-form__submit { margin: 0.5rem 0 0; }

.rb-form__privacy {
	display: block;
	margin-top: 0.9rem;
	font-size: var(--rb-fs-small);
	color: var(--rb-text-muted-light);
	text-align: center;
}

.rb-notice {
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
	border-radius: var(--rb-radius);
	font-size: 0.9375rem;
}

.rb-notice--success {
	border: 1px solid rgba(176, 141, 87, 0.5);
	background: rgba(176, 141, 87, 0.12);
	color: var(--rb-gold-soft);
}

.rb-notice--error {
	border: 1px solid rgba(214, 92, 92, 0.5);
	background: rgba(214, 92, 92, 0.1);
	color: #e2a1a1;
}

/* ------------------------------------------------------------ why choose */

.rb-why { background: var(--rb-white); }

.rb-why__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem var(--rb-gap);
}

.rb-why__item {
	border-top: 1px solid var(--rb-hairline-light);
	padding-top: 1.5rem;
}

.rb-why__item h3 {
	font-family: var(--rb-font-display);
	font-size: clamp(1.35rem, 2.2vw, 1.6rem);
	color: var(--rb-text-dark);
	margin-bottom: 0.6rem;
}

.rb-why__item p { font-size: 0.9875rem; }

@media (min-width: 640px) {
	.rb-why__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
	.rb-why__grid { grid-template-columns: repeat(4, 1fr); }
}

/* -------------------------------------------------------------- coverage */

.rb-coverage__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}

.rb-coverage__list {
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem 1.5rem;
}

.rb-coverage__list li {
	position: relative;
	padding-left: 1.4rem;
	font-size: 0.9375rem;
	color: var(--rb-text-muted-light);
}

.rb-coverage__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 0.55rem;
	height: 1px;
	background: var(--rb-gold);
}

.rb-coverage__map {
	position: relative;
	border: 1px solid var(--rb-hairline-dark);
	border-radius: var(--rb-radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--rb-coal-2);
}

.rb-coverage__map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(1) contrast(1.05) brightness(0.9);
}

@media (min-width: 960px) {
	.rb-coverage__grid { grid-template-columns: 1fr 1fr; }
}

/* --------------------------------------------------------------- contact */

.rb-contact__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.25rem var(--rb-gap);
}

.rb-contact__item {
	border-top: 1px solid var(--rb-hairline-light);
	padding-top: 1.4rem;
}

.rb-contact__item h3 {
	font-size: var(--rb-fs-small);
	font-family: var(--rb-font-body);
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--rb-gold-deep);
	margin-bottom: 0.7rem;
}

.rb-contact__item a {
	display: inline-block;
	font-family: var(--rb-font-display);
	font-size: 1.35rem;
	color: var(--rb-text-dark);
	margin-bottom: 0.3rem;
	transition: color 0.25s ease;
}

.rb-contact__item a:hover { color: var(--rb-gold-deep); }

.rb-contact__item p { font-size: 0.875rem; margin: 0; }

@media (min-width: 640px) {
	.rb-contact__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
	.rb-contact__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ------------------------------------------------------------- final CTA */

.rb-final {
	background:
		radial-gradient(90% 120% at 50% 120%, rgba(176, 141, 87, 0.16), transparent 60%),
		var(--rb-ink);
	border-top: 1px solid var(--rb-hairline-dark);
	padding: var(--rb-section-y) 0;
	text-align: center;
}

.rb-final__inner { max-width: 720px; }

.rb-final .rb-eyebrow { justify-content: center; }
.rb-final .rb-eyebrow::after {
	content: "";
	width: 2.25rem;
	height: 1px;
	background: var(--rb-gold);
	flex: none;
}

.rb-final__headline {
	font-family: var(--rb-font-display);
	font-size: clamp(2.25rem, 6vw, 4.25rem);
	font-weight: 300;
	line-height: 1.1;
	color: var(--rb-white);
	margin: 0 0 2.25rem;
}

.rb-final__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

/* ---------------------------------------------------------------- footer */

.rb-footer {
	background: var(--rb-ink);
	border-top: 1px solid var(--rb-hairline-dark);
	font-size: 0.9375rem;
}

.rb-footer__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding: 3.5rem 0 2.5rem;
}

.rb-footer__brand { display: flex; gap: 1rem; align-items: flex-start; }

.rb-footer__name {
	font-family: var(--rb-font-display);
	font-size: 1.25rem;
	color: var(--rb-text-light);
	margin-bottom: 0.2rem;
}

.rb-footer__meta { font-size: var(--rb-fs-small); color: var(--rb-text-muted-light); }

.rb-footer__nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }

.rb-footer__nav a,
.rb-footer__contact a {
	color: var(--rb-text-muted-light);
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 0.25s ease;
}

.rb-footer__contact { display: flex; flex-direction: column; gap: 0.5rem; }

.rb-footer__contact a { text-transform: none; letter-spacing: 0.03em; font-size: 0.9375rem; }

.rb-footer__nav a:hover,
.rb-footer__contact a:hover { color: var(--rb-gold-soft); }

.rb-footer__legal {
	border-top: 1px solid var(--rb-hairline-dark);
	padding: 1.4rem 0;
}

.rb-footer__legal p {
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	color: var(--rb-text-muted-light);
	margin: 0;
}

@media (min-width: 900px) {
	.rb-footer__inner {
		grid-template-columns: 2fr 1fr 1fr;
		align-items: start;
	}
}

/* ------------------------------------------------- mobile quick actions */

.rb-quickbar {
	position: fixed;
	inset: auto 0 0;
	z-index: 90;
	display: grid;
	grid-template-columns: 1fr 1fr 1.4fr;
	background: rgba(11, 11, 12, 0.96);
	backdrop-filter: blur(8px);
	border-top: 1px solid var(--rb-hairline-dark);
	padding-bottom: env(safe-area-inset-bottom, 0);
}

.rb-quickbar a {
	padding: 1rem 0.5rem;
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rb-text-light);
	border-left: 1px solid var(--rb-hairline-dark);
}

.rb-quickbar a:first-child { border-left: 0; }

.rb-quickbar__book { background: var(--rb-gold); color: var(--rb-ink) !important; }

@media (min-width: 900px) {
	.rb-quickbar { display: none; }
}

/* leave room for the quickbar on small screens */
@media (max-width: 899px) {
	.rb-footer__legal { padding-bottom: 4.5rem; }
}

/* --------------------------------------------------------------- motion */

@media (prefers-reduced-motion: reduce) {
	.rb-body *,
	.rb-body *::before,
	.rb-body *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
