/* Site header — Rhodes mockup */
.rtb-header {
	background: var(--rtb-primary);
	color: var(--rtb-white);
	position: sticky;
	top: 0;
	z-index: 100;
}

.rtb-header__inner {
	width: min(1120px, 100%);
	margin: 0 auto;
	padding: 0.85rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.rtb-header__brand {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	color: var(--rtb-white);
	min-width: 0;
}

.rtb-header__logo {
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.rtb-header__logo svg {
	width: 1.25rem;
	height: 1.25rem;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.7;
}

.rtb-header__logo-img {
	width: 2.4rem;
	height: 2.4rem;
	object-fit: contain;
	border-radius: 50%;
}

.rtb-header__name {
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.15;
}

.rtb-header__tag {
	display: block;
	font-size: 0.72rem;
	font-weight: 500;
	opacity: 0.8;
	margin-top: 0.1rem;
}

.rtb-header__nav {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.rtb-header__links {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rtb-header__links a {
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
}

.rtb-header__links a:hover {
	color: var(--rtb-white);
}

.rtb-header__lang {
	appearance: none;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: var(--rtb-white);
	border-radius: 8px;
	padding: 0.35rem 0.55rem;
	font: inherit;
	font-size: 0.85rem;
	font-weight: 600;
}

.rtb-header__cta {
	padding: 0.55rem 1rem !important;
	font-size: 0.9rem !important;
	border-radius: 10px !important;
}

.rtb-header__toggle {
	display: none;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	background: transparent;
	color: var(--rtb-white);
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

.rtb-header__toggle span {
	display: block;
	width: 1.15rem;
	height: 2px;
	background: currentColor;
	position: relative;
}

.rtb-header__toggle span::before,
.rtb-header__toggle span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
}

.rtb-header__toggle span::before {
	top: -6px;
}

.rtb-header__toggle span::after {
	top: 6px;
}

@media (max-width: 860px) {
	.rtb-header__toggle {
		display: inline-flex;
	}

	.rtb-header__nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: var(--rtb-primary);
		flex-direction: column;
		align-items: stretch;
		padding: 0.75rem 1.25rem 1.25rem;
		gap: 0.85rem;
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
	}

	.rtb-header.is-open .rtb-header__nav {
		display: flex;
	}

	.rtb-header__links {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.rtb-header__inner {
		position: relative;
		flex-wrap: wrap;
	}
}
