:root {
	--font-display: "Cinzel", "Times New Roman", serif;
	--font-body: "IBM Plex Sans", "Helvetica Neue", sans-serif;
	--color-primary: #d4af37;
	--color-bg: #101622;
	--color-bg-dark: #111318;
	--color-surface: #161b26;
	--color-surface-strong: #1c1f27;
	--color-panel: #0a0a0a92;
	--color-panel-strong: #0a0a0a92;
	--color-border: #282e39;
	--color-border-soft: #3b4354;
	--color-text: #ffffff;
	--color-muted: #9da6b9;
	--color-muted-strong: #64748b;
	--color-dark: #0a0d14;
	--color-dark-strong: #0d1017;
	--shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.4);
	--shadow-strong: 0 30px 70px rgba(0, 0, 0, 0.55);
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ul,
ol {
	margin: 0;
	padding: 0;
}

ul,
ol {
	list-style: none;
}

button {
	background: none;
	border: none;
	padding: 0;
	color: inherit;
}

html {
	scroll-behavior: smooth;
	font-size: 106.25%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	background-color: var(--color-bg);
	color: var(--color-text);
	line-height: 1.6;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

.is-hidden {
	display: none;
}

button[data-filter].is-active {
	background-color: rgba(212, 175, 55, 0.2);
	border-color: #d4af37;
	color: #ffffff;
}

.rt-header nav a[aria-current="page"] {
	color: #d4af37 !important;
	font-weight: 600;
}

button,
input,
textarea {
	font-family: inherit;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #111318;
}

::-webkit-scrollbar-thumb {
	background: #282e39;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #d4af37;
}

.rt-container {
	width: min(1240px, 100% - 32px);
	margin: 0 auto;
}

.rt-section {
	padding: clamp(3.5rem, 7vw, 6.5rem) 0;
	position: relative;
}

.rt-main {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.rt-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 12px 28px;
	border-radius: 10px;
	background: var(--color-primary);
	color: #ffffff;
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
	white-space: normal;
	text-align: center;
	line-height: 1.2;
	max-width: 100%;
}

.rt-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(212, 175, 55, 0.45);
}

.rt-button--ghost {
	background: #282e39;
	box-shadow: none;
}

.rt-button--outline {
	background: transparent;
	border: 1px solid var(--color-border-soft);
	box-shadow: none;
}

.rt-button--small {
	min-height: 40px;
	padding: 8px 20px;
	font-size: 0.9rem;
}

.rt-button--dark {
	background: #0d111a;
	box-shadow: none;
}

.rt-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--color-primary);
	font-weight: 600;
	transition: color 0.2s ease;
}

.rt-link:hover {
	color: #ffffff;
}

.rt-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 700;
}

.rt-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(17, 19, 24, 0.9);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--color-border);
}

.rt-header-inner {
	padding: 24px 0;
}

.rt-header-bar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 32px;
	width: 100%;
}

.rt-header-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	justify-self: start;
	text-decoration: none;
	color: #ffffff;
}

.rt-header-logo {
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.rt-header-logo img {
	width: 52px;
	height: 52px;
	object-fit: contain;
}

.rt-header-title {
	font-size: 1.25rem;
	font-weight: 700;
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.rt-header-nav {
	display: none;
	align-items: center;
	gap: 32px;
	justify-self: center;
}

.rt-header-nav a {
	font-size: 1rem;
	font-weight: 600;
	font-family: var(--font-display);
	text-transform: none;
	letter-spacing: 0.04em;
}

.rt-header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: end;
}

.rt-header-cta {
	display: none;
	min-width: 120px;
	height: 52px;
	padding: 0 32px;
	font-size: 1rem;
	font-weight: 700;
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

@media (min-width: 1024px) {
	.rt-header-nav {
		display: flex;
	}

	.rt-header-cta {
		display: inline-flex;
	}
}

@media (max-width: 1023px) {
	.rt-header-bar {
		grid-template-columns: 1fr auto;
	}
}

.rt-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 1rem;
}

.rt-brand .material-symbols-outlined {
	font-size: 24px;
	color: var(--color-primary);
}

.rt-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.rt-nav-list {
	list-style: none;
	display: flex;
	gap: 32px;
	padding: 0;
	margin: 0;
}

.rt-nav-list a {
	font-size: 0.9rem;
	font-weight: 500;
	font-family: var(--font-display);
	text-transform: none;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.2s ease;
}

.rt-nav-list a:hover,
.rt-nav-list .current-menu-item>a {
	color: var(--color-primary);
}

.rt-header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.rt-lang-switcher {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(212, 175, 55, 0.15);
	padding: 4px;
	border-radius: 999px;
}

.rt-lang-link {
	padding: 4px 10px;
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rt-lang-link.is-active {
	background: var(--color-primary);
	color: #ffffff;
}

.rt-mobile-menu {
	display: none;
	position: relative;
}

@media (max-width: 1023px) {
	.rt-mobile-menu {
		display: block;
	}
}

.rt-mobile-toggle {
	list-style: none;
	cursor: pointer;
	color: #ffffff;
}

.rt-mobile-toggle::-webkit-details-marker {
	display: none;
}

.rt-mobile-panel {
	position: absolute;
	right: 0;
	top: calc(100% + 12px);
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 20px;
	min-width: 220px;
	box-shadow: var(--shadow-strong);
	display: grid;
	gap: 16px;
	z-index: 100;
}

.rt-mobile-panel .rt-nav-list {
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}

.rt-mobile-actions {
	display: grid;
	gap: 12px;
}

.rt-mobile-actions a {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.rt-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	background: var(--color-bg-dark);
	overflow: hidden;
}

.rt-hero-bg,
.rt-hero-overlay {
	position: absolute;
	inset: 0;
}

.rt-hero-bg {
	background-size: cover;
	background-position: center;
	opacity: 0.45;
}

.rt-hero-overlay {
	background: linear-gradient(180deg, rgba(17, 19, 24, 0.8), rgba(17, 19, 24, 0.95) 60%, rgba(17, 19, 24, 1));
}

.rt-hero-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 860px;
	padding: 6rem 0;
}

.rt-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 16px;
	border-radius: 999px;
	border: 1px solid rgba(212, 175, 55, 0.4);
	background: rgba(212, 175, 55, 0.12);
	font-size: 0.85rem;
	color: var(--color-primary);
	margin-bottom: 24px;
}

.rt-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--color-primary);
	animation: rt-pulse 1.5s infinite;
}

.rt-hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.8rem, 6vw, 4.6rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin: 0 0 20px;
}

.rt-hero-title span {
	display: inline-block;
	background: linear-gradient(90deg, #ffffff, #6b7280);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.rt-hero-subtitle {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.6vw, 2.1rem);
	margin: 0 0 20px;
	color: #ffffff;
}

.rt-hero-lead {
	color: var(--color-muted);
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	margin: 0 auto 32px;
	max-width: 640px;
}

.rt-hero-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.rt-home-hero .rt-hero-bg {
	background-image: url("../images/wallpaper/original-3.jpg");
	filter: saturate(0.7) contrast(1.1);
}

.rt-home-hero .rt-hero-overlay {
	background: linear-gradient(120deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.6) 40%, rgba(212, 175, 55, 0.45));
}

.rt-home-hero .rt-hero-inner {
	text-align: left;
	padding: clamp(4rem, 10vw, 7rem) 0;
}

.rt-home-hero .rt-hero-panel {
	max-width: clamp(22rem, 60vw, 48rem);
}

.rt-home-hero .rt-hero-actions {
	justify-content: flex-start;
}

.rt-hero-panel {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: clamp(2rem, 4vw, 3.5rem);
	box-shadow: none;
	backdrop-filter: none;
}

.rt-home-values {
	background: #0a0a0a;
}

.rt-home-values-inner {
	position: relative;
}

.rt-home-values-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(2rem, 6vw, 5rem);
	align-items: start;
}

.rt-home-values .rt-cta-label {
	display: inline-flex;
	margin-bottom: 14px;
	color: #8e95a6;
}

.rt-home-values-kicker {
	font-size: 0.72rem;
	letter-spacing: 0.35em;
}

.rt-home-values-copy h2 {
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 5vw, 3.4rem);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 10px;
	line-height: 1.05;
	color: #ffffff;
}

.rt-home-values-text {
	display: grid;
	gap: 20px;
	max-width: 42rem;
}

.rt-home-values-text p {
	margin: 0;
	color: var(--color-muted);
	font-size: 1.05rem;
}

.rt-home-values .rt-artist-stats {
	border-top-color: #262c36;
	margin-top: 18px;
	padding-top: 18px;
}

.rt-home-values-voice {
	margin: 0;
	color: #ffffff;
	font-size: 1.05rem;
	line-height: 1.7;
}

.rt-home-values-highlight {
	font-weight: 800;
}

.rt-home-values-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.rt-home-values-text .rt-home-values-actions {
	margin-top: 0;
}

.rt-home-portfolio-wall {
	background: #0a0a0a;
}

.rt-home-portfolio-wall .rt-section-header h2,
.rt-home-faq .rt-section-header h2,
.rt-home-cta h2 {
	color: #ffffff;
}

.rt-home-portfolio-wall .rt-section-header p,
.rt-home-faq .rt-section-header p,
.rt-home-cta p {
	color: var(--color-muted);
}

.rt-home-portfolio-grid {
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 10px;
}

.rt-home-portfolio-wall [data-portfolio-gallery]>div {
	border: none;
	background: transparent;
	border-radius: 0;
}

.rt-home-portfolio-wall [data-portfolio-gallery]>div>div {
	display: none;
}

.rt-home-faq {
	background: #0a0a0a;
}

.rt-faq-accordion {
	display: grid;
	gap: 16px;
}

.rt-accordion-item {
	background: var(--color-panel-strong);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 14px;
	overflow: hidden;
}

.rt-accordion-item summary {
	cursor: pointer;
	padding: 18px 20px;
	font-weight: 700;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	list-style: none;
}

.rt-accordion-item summary::-webkit-details-marker {
	display: none;
}

.rt-accordion-item summary::marker {
	display: none;
}

.rt-accordion-item summary::after {
	content: "+";
	color: var(--color-primary);
	font-size: 1.2rem;
}

.rt-accordion-item[open] summary::after {
	content: "−";
}

.rt-accordion-item p {
	margin: 0;
	padding: 0 20px 18px;
	color: var(--color-muted);
}

.rt-home-cta.rt-cta {
	color: #ffffff;
	background: #0a0a0a;
}

.rt-home-cta .rt-cta-overlay {
	display: none;
}

.rt-home-cta .rt-location-card {
	background: var(--color-panel);
	border-color: rgba(212, 175, 55, 0.25);
}

.rt-home-cta .rt-location-heading span {
	color: var(--color-primary);
}

.rt-home-cta .rt-location-meta {
	color: var(--color-muted);
}

.rt-home-cta .rt-location-map {
	background: #0a0a0a;
	border: 1px solid #1c1f27;
	overflow: hidden;
	opacity: 1;
	height: 200px;
	border-radius: 12px;
}

.rt-home-cta .rt-location-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.rt-portfolio {
	background: #111318;
	border-top: 1px solid #1c1f27;
}

.rt-section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	margin-bottom: 32px;
}

.rt-section-header h2 {
	margin: 0 0 8px;
	font-family: var(--font-display);
	font-size: 2rem;
}

.rt-section-header p {
	margin: 0;
	color: var(--color-muted);
}

.rt-carousel {
	overflow-x: auto;
	padding-bottom: 24px;
}

.rt-carousel-track {
	display: flex;
	gap: 24px;
	padding: 0 4px;
	scroll-snap-type: x mandatory;
}

.rt-work-card {
	flex: 0 0 280px;
	border-radius: 16px;
	overflow: hidden;
	background: var(--color-panel);
	border: 1px solid #222938;
	position: relative;
	min-height: 380px;
	scroll-snap-align: center;
	cursor: pointer;
}

.rt-work-image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.rt-work-card:hover .rt-work-image {
	transform: scale(1.08);
}

.rt-work-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.8));
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.rt-work-card:hover .rt-work-overlay {
	opacity: 1;
}

.rt-work-overlay h3 {
	margin: 0 0 6px;
	font-size: 1.1rem;
}

.rt-work-overlay p {
	margin: 0;
	color: var(--color-primary);
	font-weight: 600;
}

.rt-artist {
	background: #101622;
}

.rt-artist-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 48px;
	align-items: center;
}

.rt-artist-image {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: 12px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	border: 1px solid #2a303c;
	box-shadow: var(--shadow-strong);
}

.rt-artist-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.rt-artist-content h2 {
	margin: 16px 0 16px;
	font-family: var(--font-display);
	font-size: 2.4rem;
}

.rt-artist-content p {
	color: var(--color-muted);
}

.rt-artist-stats {
	display: flex;
	gap: 24px;
	padding-top: 16px;
	margin-top: 16px;
	border-top: 1px solid var(--color-border);
	flex-wrap: wrap;
}

.rt-artist-stats strong {
	font-size: 1.8rem;
	display: block;
}

.rt-artist-stats span {
	color: var(--color-muted);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.rt-process {
	background: #0d1017;
	border-top: 1px solid #1c1f27;
	border-bottom: 1px solid #1c1f27;
}

.rt-section-title {
	text-align: center;
	max-width: 620px;
	margin: 0 auto 40px;
}

.rt-section-title h2 {
	margin: 0 0 12px;
	font-size: 2.2rem;
}

.rt-section-title p {
	margin: 0;
	color: var(--color-muted);
}

.rt-section-title--left {
	text-align: left;
	margin-left: 0;
}

.rt-process-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.rt-process-card {
	background: var(--color-panel);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 32px;
	position: relative;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.rt-process-card:hover {
	transform: translateY(-6px);
	border-color: rgba(212, 175, 55, 0.5);
}

.rt-process-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #111318;
	border: 1px solid var(--color-border);
	color: #ffffff;
	margin-bottom: 16px;
}

.rt-process-card h3 {
	margin: 0 0 12px;
	font-size: 1.1rem;
}

.rt-process-card p {
	margin: 0;
	color: var(--color-muted);
}

.rt-cta {
	position: relative;
	background-size: cover;
	background-position: center;
	color: #ffffff;
}

.rt-cta-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(17, 19, 24, 0.95), rgba(17, 19, 24, 0.75) 50%, rgba(17, 19, 24, 0.4));
}

.rt-cta-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	align-items: center;
}

.rt-cta h2 {
	font-size: 2.6rem;
	margin-bottom: 12px;
	font-family: var(--font-display);
	letter-spacing: 0.04em;
}

.rt-cta p {
	color: #d5d9e3;
}

.rt-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.rt-location-card {
	background: var(--color-panel);
	border: 1px solid #434c5d;
	border-radius: 16px;
	padding: 20px;
	backdrop-filter: blur(10px);
	display: grid;
	gap: 16px;
}

.rt-location-heading {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.rt-location-heading span {
	color: var(--color-primary);
}

.rt-location-heading h3 {
	margin: 0 0 4px;
}

.rt-location-heading p {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.9rem;
}

.rt-location-map {
	width: 100%;
	height: 140px;
	border-radius: 12px;
	background-size: cover;
	background-position: center;
	opacity: 0.75;
}

.rt-location-meta {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	color: var(--color-muted);
}

.rt-open-status {
	color: #4ade80;
	font-weight: 700;
}

.rt-page-header h1 {
	font-size: clamp(2.6rem, 5vw, 4rem);
	font-family: var(--font-display);
	text-transform: uppercase;
	margin-bottom: 16px;
}

.rt-page-header p {
	max-width: 680px;
	color: var(--color-muted);
}

.rt-page-subtitle {
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 2.8vw, 2.1rem);
	margin: 0;
	color: #ffffff;
}

.rt-text-stack {
	display: grid;
	gap: 16px;
	max-width: 860px;
}

.rt-text-stack h2,
.rt-text-stack h3 {
	font-family: var(--font-display);
}

.rt-text-stack h3 {
	font-size: 1.35rem;
}

.rt-text-stack p {
	color: var(--color-muted);
}

.rt-section-heading {
	font-family: var(--font-display);
	font-size: 1.6rem;
	margin-bottom: 16px;
}

.rt-list {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 0;
}

.rt-list li {
	position: relative;
	padding-left: 18px;
	color: var(--color-muted);
}

.rt-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--color-primary);
}

.rt-list strong {
	color: #ffffff;
	font-weight: 600;
}

.rt-portfolio-page {
	background: var(--color-bg);
}

.rt-filter-chips {
	display: flex;
	gap: 12px;
	flex-wrap: nowrap;
	overflow-x: auto;
	padding-bottom: 16px;
}

.rt-chip {
	background: #282e39;
	border: none;
	border-radius: 10px;
	color: var(--color-muted);
	padding: 10px 18px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.rt-chip.is-active,
.rt-chip:hover {
	background: var(--color-primary);
	color: #ffffff;
}

.rt-gallery-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.rt-gallery-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: var(--color-panel);
	min-height: 320px;
}

.rt-gallery-image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s ease;
}

.rt-gallery-card:hover .rt-gallery-image {
	transform: scale(1.07);
}

.rt-gallery-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.rt-gallery-card:hover .rt-gallery-overlay {
	opacity: 1;
}

.rt-gallery-card.is-hidden,
.rt-work-card.is-hidden {
	display: none;
}

.rt-gallery-overlay h3 {
	margin: 0 0 6px;
}

.rt-gallery-overlay p {
	margin: 0;
	color: var(--color-primary);
}

.rt-lightbox-trigger {
	cursor: zoom-in;
}

.rt-lightbox-trigger:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 3px;
}

body.rt-lightbox-open {
	overflow: hidden;
}

.rt-lightbox {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1.5rem, 4vw, 3rem);
	background: rgba(5, 7, 12, 0.92);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 9999;
	cursor: zoom-out;
}

.rt-lightbox.is-active {
	opacity: 1;
	visibility: visible;
}

.rt-lightbox-dialog {
	position: relative;
	width: min(960px, 100%);
	max-height: 90vh;
	padding: clamp(1rem, 2vw, 1.5rem);
	background: var(--color-panel);
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-strong);
	display: grid;
	gap: 12px;
	cursor: auto;
}

.rt-lightbox-image {
	width: 100%;
	height: auto;
	max-height: 70vh;
	object-fit: contain;
	border-radius: calc(var(--radius-lg) - 6px);
	background: var(--color-panel);
}

.rt-lightbox-caption {
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-muted);
	text-align: center;
}

.rt-lightbox-close {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--color-border);
	color: var(--color-text);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.rt-lightbox-close:hover,
.rt-lightbox-close:focus-visible {
	background: rgba(212, 175, 55, 0.18);
	border-color: var(--color-primary);
	transform: translateY(-1px);
}

.rt-load-more {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.rt-cta-banner {
	background: linear-gradient(180deg, #101622, #0a0d14);
	border-top: 1px solid var(--color-border);
}

.rt-cta-banner-inner {
	text-align: center;
	display: grid;
	gap: 20px;
	justify-items: center;
}

.rt-cta-label {
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 700;
}

.rt-about-hero {
	position: relative;
}

.rt-about-hero .rt-hero-bg {
	background-image: url("../images/wallpaper/original-5.jpg");
	filter: saturate(0.75) contrast(1.1);
}

.rt-about-hero .rt-hero-overlay {
	background: linear-gradient(120deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.6) 45%, rgba(212, 175, 55, 0.4));
}

.rt-about-hero .rt-hero-inner {
	text-align: left;
	padding: clamp(4rem, 10vw, 7rem) 0;
}

.rt-about-hero .rt-hero-panel {
	max-width: clamp(22rem, 55vw, 46rem);
}

.rt-hero-banner {
	position: relative;
	min-height: 520px;
	border-radius: 18px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	padding: 36px;
	display: flex;
	align-items: flex-end;
}

.rt-hero-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(16, 22, 34, 0.95), rgba(16, 22, 34, 0.4) 60%, rgba(16, 22, 34, 0.1));
}

.rt-hero-banner-content {
	position: relative;
	z-index: 1;
	max-width: 540px;
}

.rt-hero-banner-content h1 {
	font-size: clamp(2.6rem, 6vw, 4.5rem);
	text-transform: uppercase;
	margin: 0 0 12px;
	font-family: var(--font-display);
}

.rt-hero-banner-content h1 span {
	color: var(--color-primary);
}

.rt-hero-line {
	width: 80px;
	height: 4px;
	background: var(--color-primary);
	border-radius: 999px;
	margin-bottom: 12px;
}

.rt-hero-banner-content p {
	color: #e2e8f0;
	margin: 0;
}

.rt-about-story {
	position: relative;
	overflow: hidden;
	background: #0a0a0a;
}

.rt-about-story-bg,
.rt-about-story-overlay {
	position: absolute;
	inset: 0;
}

.rt-about-story-bg {
	background-image: url("../images/wallpaper/wallpaper-10.png");
	background-size: cover;
	background-position: center;
	opacity: 0.22;
	filter: saturate(0.7) contrast(1.1);
	transform: scale(1.04);
}

.rt-about-story-overlay {
	background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.75) 55%, rgba(212, 175, 55, 0.3));
}

.rt-about-story-inner {
	position: relative;
	z-index: 1;
}

.rt-about-aside {
	display: grid;
	gap: 24px;
}

.rt-about-image {
	background-image: url("../images/portrait/portrait-02.jpg");
}

.rt-about-panel {
	background: var(--color-panel);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.rt-about-panel h3 {
	margin: 0 0 16px;
	font-family: var(--font-display);
	font-size: 1.4rem;
}

.rt-about-panel .rt-list {
	gap: 10px;
}

.rt-about-panel .rt-list li {
	color: #d0d7e7;
}

.rt-services-hero {
	position: relative;
}

.rt-services-hero .rt-hero-bg {
	background-image: url("../images/wallpaper/original-1.jpg");
	filter: saturate(0.8) contrast(1.1);
}

.rt-services-hero .rt-hero-overlay {
	background: linear-gradient(120deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.62) 45%, rgba(212, 175, 55, 0.4));
}

.rt-services-hero .rt-hero-inner {
	text-align: left;
	padding: clamp(4rem, 10vw, 7rem) 0;
}

.rt-services-hero .rt-hero-panel {
	max-width: clamp(22rem, 55vw, 46rem);
}

.rt-services-details {
	position: relative;
	overflow: hidden;
	background: #0a0a0a;
}

.rt-services-details-bg,
.rt-services-details-overlay {
	position: absolute;
	inset: 0;
}

.rt-services-details-bg {
	background-image: url("../images/wallpaper/wallpaper-6.png");
	background-size: cover;
	background-position: center;
	opacity: 0.2;
	filter: saturate(0.7) contrast(1.1);
	transform: scale(1.05);
}

.rt-services-details-overlay {
	background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.75) 55%, rgba(212, 175, 55, 0.25));
}

.rt-services-details-inner {
	position: relative;
	z-index: 1;
}

.rt-services-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

.rt-service-card {
	background: var(--color-panel);
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
	display: grid;
	gap: 12px;
}

.rt-service-card h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: #ffffff;
}

.rt-service-card p {
	margin: 0;
	color: #d0d7e7;
}

.rt-service-card .rt-list {
	gap: 10px;
}

.rt-service-card .rt-list li {
	color: #d0d7e7;
}

.rt-contact-hero {
	position: relative;
}

.rt-contact-hero .rt-hero-bg {
	background-image: url("../images/wallpaper/wallpaper-1.png");
	filter: saturate(0.8) contrast(1.1);
}

.rt-contact-hero .rt-hero-overlay {
	background: linear-gradient(120deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.6) 45%, rgba(212, 175, 55, 0.4));
}

.rt-contact-hero .rt-hero-inner {
	text-align: left;
	padding: clamp(4rem, 10vw, 7rem) 0;
}

.rt-contact-hero .rt-hero-panel {
	max-width: clamp(22rem, 55vw, 46rem);
}

.rt-contact-hero .rt-hero-actions {
	justify-content: flex-start;
}

.rt-contact-details {
	position: relative;
	overflow: hidden;
	background: #0a0a0a;
}

.rt-contact-details-bg,
.rt-contact-details-overlay {
	position: absolute;
	inset: 0;
}
 
.rt-contact-details-bg {
	background-image: url("../images/wallpaper/wallpaper-5.png");
	background-size: cover;
	background-position: center;
	opacity: 0.2;
	filter: saturate(0.7) contrast(1.1);
	transform: scale(1.05);
}

.rt-contact-details-overlay {
	background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.75) 55%, rgba(212, 175, 55, 0.25));
}

.rt-contact-details-inner {
	position: relative;
	z-index: 1;
}

.rt-contact-form {
	margin: 32px 0 0;
	scroll-margin-top: 120px;
}

.rt-contact-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

.rt-contact-card {
	background: var(--color-panel);
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
	display: grid;
	gap: 12px;
}

.rt-contact-card h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: #ffffff;
}

.rt-contact-card p {
	margin: 0;
	color: #d0d7e7;
}

.rt-contact-card .rt-list {
	gap: 10px;
}

.rt-contact-card .rt-list li {
	color: #d0d7e7;
}

.rt-contact-form .rt-form-card {
	background: var(--color-panel);
	border: 1px solid rgba(212, 175, 55, 0.25);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.rt-contact-form .rt-form input,
.rt-contact-form .rt-form textarea {
	background: #0a0a0a;
}

.rt-contact-link {
	color: inherit;
	transition: color 0.2s ease;
}

.rt-contact-link:hover {
	color: var(--color-primary);
}

.rt-contact-actions {
	margin-top: 32px;
	justify-content: center;
}

.rt-portfolio-hero {
	position: relative;
}

.rt-portfolio-hero .rt-hero-bg {
	background-image: url("../images/wallpaper/wallpaper-9.jpg");
	filter: saturate(0.75) contrast(1.1);
}

.rt-portfolio-hero .rt-hero-overlay {
	background: linear-gradient(120deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.6) 45%, rgba(212, 175, 55, 0.35));
}

.rt-portfolio-hero .rt-hero-inner {
	text-align: left;
	padding: clamp(4rem, 10vw, 7rem) 0;
}

.rt-portfolio-hero .rt-hero-panel {
	max-width: clamp(22rem, 55vw, 46rem);
}

.rt-portfolio-intro {
	position: relative;
	overflow: hidden;
	background: #0a0a0a;
}

.rt-portfolio-intro-bg,
.rt-portfolio-intro-overlay {
	position: absolute;
	inset: 0;
}

.rt-portfolio-intro-bg {
	background-image: url("../images/wallpaper/original-2.jpg");
	background-size: cover;
	background-position: center;
	opacity: 0.2;
	filter: saturate(0.7) contrast(1.1);
	transform: scale(1.05);
}

.rt-portfolio-intro-overlay {
	background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.75) 55%, rgba(212, 175, 55, 0.25));
}

.rt-portfolio-intro-inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 32px;
}

.rt-portfolio-copy {
	display: grid;
	gap: 16px;
	color: #d0d7e7;
	max-width: 860px;
}

.rt-portfolio-copy p {
	margin: 0;
}

.rt-portfolio-filters {
	display: grid;
	gap: 16px;
}

.rt-portfolio-filters h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: #ffffff;
}

.rt-faq-hero {
	position: relative;
}

.rt-faq-hero .rt-hero-bg {
	background-image: url("../images/wallpaper/original-4.jpg");
	filter: saturate(0.75) contrast(1.1);
}

.rt-faq-hero .rt-hero-overlay {
	background: linear-gradient(120deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.6) 45%, rgba(212, 175, 55, 0.35));
}

.rt-faq-hero .rt-hero-inner {
	text-align: left;
	padding: clamp(4rem, 10vw, 7rem) 0;
}

.rt-faq-hero .rt-hero-panel {
	max-width: clamp(22rem, 55vw, 46rem);
}

.rt-faq-details {
	position: relative;
	overflow: hidden;
	background: #0a0a0a;
}

.rt-faq-details-bg,
.rt-faq-details-overlay {
	position: absolute;
	inset: 0;
}

.rt-faq-details-bg {
	background-image: url("../images/wallpaper/wallpaper-2.png");
	background-size: cover;
	background-position: center;
	opacity: 0.2;
	filter: saturate(0.7) contrast(1.1);
	transform: scale(1.05);
}

.rt-faq-details-overlay {
	background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.75) 55%, rgba(212, 175, 55, 0.25));
}

.rt-faq-details-inner {
	position: relative;
	z-index: 1;
}

.rt-faq-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

.rt-faq-card {
	background: var(--color-panel);
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
	display: grid;
	gap: 12px;
	scroll-margin-top: 160px;
}

.rt-faq-card h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: #ffffff;
}

.rt-faq-card p {
	margin: 0;
	color: #d0d7e7;
}

.rt-faq-qa {
	display: grid;
	gap: 16px;
}

.rt-faq-question {
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 6px;
}

.rt-bio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	align-items: center;
}

.rt-bio-text {
	display: grid;
	gap: 16px;
}

.rt-bio-text h2 {
	margin: 12px 0 16px;
	font-family: var(--font-display);
}

.rt-bio-text p {
	color: #cbd5f5;
}

.rt-bio-stats {
	display: flex;
	gap: 20px;
	border-top: 1px solid #22283a;
	padding-top: 16px;
	margin-top: 20px;
}

.rt-bio-stats strong {
	font-size: 1.5rem;
}

.rt-bio-stats span {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-muted);
}

.rt-bio-image {
	position: relative;
	border-radius: 16px;
	min-height: 420px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	border: 1px solid #2b3242;
	box-shadow: var(--shadow-strong);
}

.rt-bio-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 22, 34, 0.1), rgba(16, 22, 34, 0.85));
}

.rt-bio-badge {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	background: var(--color-panel);
	border: 1px solid #3b4354;
	border-radius: 12px;
	padding: 16px;
}

.rt-bio-badge span {
	color: var(--color-primary);
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
}

.rt-bio-badge p {
	margin: 6px 0 0;
	font-size: 0.9rem;
}

.rt-philosophy {
	background: #0d1017;
	border-top: 1px solid #1e232e;
	border-bottom: 1px solid #1e232e;
}

.rt-philosophy-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.rt-philosophy-card {
	background: var(--color-panel);
	border: 1px solid var(--color-border);
	border-radius: 14px;
	padding: 28px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.rt-philosophy-card:hover {
	border-color: rgba(212, 175, 55, 0.5);
	box-shadow: 0 0 24px rgba(212, 175, 55, 0.12);
}

.rt-philosophy-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #1c222e;
	color: var(--color-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	transition: background 0.3s ease, color 0.3s ease;
}

.rt-philosophy-card:hover .rt-philosophy-icon {
	background: var(--color-primary);
	color: #ffffff;
}

.rt-philosophy-card h3 {
	margin: 0 0 12px;
}

.rt-philosophy-card p {
	margin: 0;
	color: var(--color-muted);
}

.rt-timeline-list {
	position: relative;
	margin-top: 32px;
	display: grid;
	gap: 32px;
}

.rt-timeline-list::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--color-border);
}

.rt-timeline-item {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 20px;
	position: relative;
}

.rt-timeline-marker {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 2px solid #1c1f27;
	background: #1c1f27;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	z-index: 1;
}

.rt-timeline-item.is-current .rt-timeline-marker {
	background: var(--color-primary);
	border-color: var(--color-primary);
	box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.rt-timeline-year {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 700;
	margin-bottom: 6px;
}

.rt-timeline-content h3 {
	margin: 0 0 8px;
}

.rt-timeline-content p {
	margin: 0;
	color: var(--color-muted);
}

.rt-about-cta {
	background: var(--color-primary);
}

.rt-about-cta-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.rt-about-cta-inner h2 {
	margin: 0;
	text-transform: uppercase;
	font-size: 2rem;
}

.rt-about-cta-inner p {
	margin: 6px 0 0;
	color: #dbeafe;
}

.rt-booking-hero {
	background-size: cover;
	background-position: center;
	min-height: 420px;
	position: relative;
	display: flex;
	align-items: center;
}

.rt-booking-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 22, 34, 0.6), rgba(16, 22, 34, 0.95));
}

.rt-booking-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.rt-booking-hero-content h1 {
	font-size: clamp(2.6rem, 6vw, 4rem);
	text-transform: uppercase;
	margin-bottom: 12px;
}

.rt-booking-hero-content p {
	max-width: 700px;
	margin: 0 auto;
	color: var(--color-muted);
}

.rt-booking-process h2 {
	text-transform: uppercase;
	margin-bottom: 32px;
}

.rt-booking-steps {
	display: grid;
	gap: 24px;
}

.rt-booking-step {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 16px;
	position: relative;
}

.rt-booking-step-icon {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: rgba(212, 175, 55, 0.1);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-border);
}

.rt-booking-step-line {
	position: absolute;
	left: 19px;
	top: 44px;
	bottom: -24px;
	width: 2px;
	background: var(--color-border);
}

.rt-booking-step-content h3 {
	margin: 0 0 8px;
}

.rt-booking-step-content p {
	margin: 0;
	color: var(--color-muted);
}

.rt-form-card {
	background: var(--color-panel);
	border: 1px solid var(--color-border-soft);
	border-radius: 16px;
	padding: clamp(24px, 4vw, 40px);
	box-shadow: var(--shadow-strong);
}

.rt-form-card h2 {
	font-family: var(--font-display);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.rt-form-card p {
	color: var(--color-muted);
	margin-bottom: 24px;
}

.rt-form {
	display: grid;
	gap: 20px;
}

.rt-form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.rt-form label,
.rt-form-full {
	display: grid;
	gap: 8px;
}

.rt-form label span,
.rt-form-full span {
	font-size: 0.9rem;
	text-transform: none;
	letter-spacing: 0.02em;
	font-weight: 600;
	color: #d5d9e3;
}

.rt-form input,
.rt-form textarea {
	background: #101622;
	border: 1px solid var(--color-border-soft);
	border-radius: 10px;
	padding: 12px 14px;
	color: #ffffff;
	font-size: 1rem;
}

.rt-form textarea {
	min-height: 140px;
	resize: vertical;
}

.rt-form input::placeholder,
.rt-form textarea::placeholder {
	color: var(--color-muted);
}

.rt-upload {
	border: 2px dashed var(--color-border-soft);
	border-radius: 12px;
	padding: 28px;
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 6px;
	background: var(--color-panel);
	color: var(--color-muted);
	position: relative;
	cursor: pointer;
	overflow: hidden;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.rt-upload:focus-within,
.rt-upload.is-dragover {
	border-color: var(--color-primary);
	background: var(--color-panel-strong);
}

.rt-upload>* {
	position: relative;
	z-index: 1;
}

.rt-upload-input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}

.rt-upload .material-symbols-outlined {
	font-size: 32px;
	color: var(--color-muted);
}

.rt-upload p {
	margin: 0;
	color: #ffffff;
	font-weight: 600;
}

.rt-upload small {
	font-size: 0.75rem;
	color: var(--color-muted);
}

.rt-form-note {
	text-align: center;
	font-size: 0.75rem;
	color: var(--color-muted);
	margin-top: 12px;
}

.rt-faq h2 {
	text-transform: uppercase;
	margin-bottom: 24px;
}

.rt-faq-list {
	display: grid;
	gap: 12px;
}

.rt-faq-item {
	background: var(--color-panel);
	border: 1px solid var(--color-border-soft);
	border-radius: 12px;
	overflow: hidden;
}

.rt-faq-item summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	font-weight: 600;
}

.rt-faq-item summary::-webkit-details-marker {
	display: none;
}

.rt-faq-content {
	padding: 0 20px 20px;
	border-top: 1px solid rgba(59, 67, 84, 0.6);
	color: var(--color-muted);
}

.rt-footer {
	background: var(--color-dark-strong);
	border-top: 1px solid var(--color-border);
	padding: 48px 0;
	color: var(--color-muted);
}

footer a {
	font-family: var(--font-display);
	text-transform: none;
	letter-spacing: 0.04em;
}

footer h4 {
	font-family: var(--font-display);
	text-transform: none;
	letter-spacing: 0.04em;
}

.rt-footer--home {
	background: #0a0c10;
}

.rt-footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	margin-bottom: 32px;
}

.rt-footer-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #ffffff;
	font-weight: 700;
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.rt-footer-title {
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.rt-footer-social {
	display: flex;
	gap: 16px;
	align-items: center;
	color: var(--color-muted);
}

.rt-social-icon {
	width: 20px;
	height: 20px;
}

.rt-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding-top: 24px;
	border-top: 1px solid var(--color-border);
	font-size: 0.85rem;
}

.rt-footer-links {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.rt-footer-simple {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.rt-footer-booking {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	align-items: start;
}

.rt-footer-meta {
	color: var(--color-muted);
	margin-top: 6px;
}

.rt-footer-legal {
	font-size: 0.8rem;
	color: var(--color-muted-strong);
}

.rt-footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}

.rt-footer-block h4 {
	color: #ffffff;
	font-family: var(--font-display);
	text-transform: none;
	letter-spacing: 0.04em;
	font-size: 0.8rem;
	margin-bottom: 12px;
}

.rt-footer-inline {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--color-muted);
	font-size: 0.85rem;
}

.rt-footer-inline .material-symbols-outlined {
	font-size: 18px;
}

.rt-content h1,
.rt-content h2,
.rt-content h3 {
	font-family: var(--font-display);
}

.rt-entry {
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 32px;
	margin-bottom: 32px;
}

.rt-entry a {
	color: var(--color-primary);
}

.rt-animate {
	animation: rt-fade-up 0.8s ease both;
}

@keyframes rt-pulse {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}

	50% {
		transform: scale(1.3);
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 0.6;
	}
}

@keyframes rt-fade-up {
	0% {
		opacity: 0;
		transform: translateY(16px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 960px) {
	.rt-nav {
		display: none;
	}

	.rt-hero-inner {
		text-align: left;
	}

	.rt-hero-actions {
		justify-content: flex-start;
	}

	.rt-section-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.rt-home-values-grid {
		grid-template-columns: 1fr;
	}

	.rt-footer-top,
	.rt-footer-bottom,
	.rt-footer-simple {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 720px) {
	.rt-hero {
		min-height: auto;
	}

	.rt-hero-inner {
		padding: 4rem 0;
	}

	.rt-hero-title {
		font-size: 1.9rem;
		word-break: break-word;
		hyphens: auto;
	}

	.rt-section {
		padding: 3rem 0;
	}

	.rt-cta h2 {
		font-size: 2rem;
	}

	.rt-booking-step {
		grid-template-columns: 1fr;
	}

	.rt-booking-step-line {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

.rt-gallery-grid {
	overflow-anchor: none;
}

.rt-chip {
	background-color: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: #ffffff;
	padding: 8px 24px;
	border-radius: 30px;
	border: 1px solid var(--color-border);
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.rt-chip:hover {
	border-color: #d4af37;
	color: #d4af37;
	background-color: #0f1219;
}