:root {
	--ws-red: #b11f24;
	--ws-red-dark: #8d171b;
	--ws-black: #111111;
	--ws-charcoal: #232323;
	--ws-gray-900: #2d2d2d;
	--ws-gray-700: #555555;
	--ws-gray-500: #8a8a8a;
	--ws-gray-300: #d8d8d8;
	--ws-gray-100: #f3f3f3;
	--ws-white: #ffffff;

	--radius-sm: 12px;
	--radius-md: 20px;
	--radius-pill: 999px;

	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05), 0 16px 32px rgba(0, 0, 0, 0.05);
	--shadow-dark: 0 8px 24px rgba(0, 0, 0, 0.18);

	--border-soft: 1px solid rgba(0, 0, 0, 0.06);
	--border-soft-dark: 1px solid rgba(255, 255, 255, 0.08);
}

body {
	background: transparent;
	color: var(--ws-gray-900);
}

body, input, select, textarea {
	color: var(--ws-gray-900);
}

a {
	color: var(--ws-red) !important;
}

a:hover {
	color: var(--ws-red-dark) !important;
}

strong, b,
h1, h2, h3, h4, h5, h6 {
	color: var(--ws-black);
}

input[type="button"],
input[type="submit"],
button,
.button {
	color: var(--ws-red) !important;
	box-shadow: inset 0 0 0 2px var(--ws-red);
}

input[type="button"]:hover,
input[type="submit"]:hover,
button:hover,
.button:hover {
	background-color: rgba(177, 31, 36, 0.08);
}

input[type="button"].primary,
input[type="submit"].primary,
button.primary,
.button.primary {
	background-color: var(--ws-red);
	box-shadow: none;
	color: var(--ws-white) !important;
}

input[type="button"].primary:hover,
input[type="submit"].primary:hover,
button.primary:hover,
.button.primary:hover {
	background-color: var(--ws-red-dark);
}

#wrapper {
	background: transparent;
}

#header {
	background: rgba(17, 17, 17, 0.86);
	box-shadow: var(--shadow-sm);
}

#header a,
#header > .logo strong,
#header > .logo .extra {
	color: var(--ws-white) !important;
}

#header > .logo .header-logo {
	display: block;
	height: 2.9rem;
	width: auto;
}

#header > .logo a {
	display: inline-flex;
	align-items: center;
}

/* Hide inline horizontal nav at every viewport — replaced by hamburger toggle */
#header > nav {
	display: none !important;
}

/* Show hamburger toggle at every viewport */
#header > .navPanelToggle {
	display: block !important;
	top: 0;
	right: 0;
	color: var(--ws-white) !important;
	font-size: 0;
	line-height: inherit;
	width: 3.25rem;
	text-align: center;
}

#header > .navPanelToggle:before {
	font-size: 1.25rem;
	margin: 0 !important;
	float: none !important;
	color: var(--ws-white);
	transition: color 0.2s ease;
}

#header > .navPanelToggle:hover:before,
body.is-navPanel-visible #header > .navPanelToggle:before {
	color: var(--ws-red) !important;
}

/* Side panel theme */
#navPanel {
	background: rgba(17, 17, 17, 0.97) !important;
}

#navPanel nav {
	padding: 4.25em 1.75em 2.5em;
}

#navPanel .link {
	color: var(--ws-white) !important;
	border-top-color: rgba(255, 255, 255, 0.08) !important;
	padding: 0.95em 0;
	font-size: 1.05em;
	font-weight: 600;
}

#navPanel .link:hover,
#navPanel .link:focus {
	color: var(--ws-red) !important;
	background: rgba(255, 255, 255, 0.04);
}

#navPanel .close:before {
	color: var(--ws-white) !important;
}

#navPanel .close:hover:before {
	color: var(--ws-red) !important;
}

#banner {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

#banner:after {
	background: linear-gradient(
		180deg,
		rgba(17, 17, 17, 0.55) 0%,
		rgba(17, 17, 17, 0.2) 60%,
		rgba(17, 17, 17, 0) 100%
	);
	opacity: 1 !important;
	transition: none !important;
}

#banner h1,
#banner .content.primary p {
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

#banner video {
	z-index: -2;
}

#banner .content.primary,
#banner h1,
#banner h2,
#banner h3,
#banner p,
#banner a,
#banner strong {
	color: var(--ws-white) !important;
}

#banner .content.primary {
	padding-top: 4rem !important;
	padding-bottom: 4rem !important;
	opacity: 0;
	transform: translateY(2rem);
	transition: opacity 1.2s ease, transform 1.2s ease;
}

body.hero-ready #banner .content.primary {
	opacity: 1;
	transform: translateY(0);
}

#wrapper > .main.feature-strip {
	background: var(--ws-gray-100);
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.feature-strip .feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 2.25rem 2rem 2rem;
	background: var(--ws-white);
	border: var(--border-soft);
	border-radius: var(--radius-md);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-item:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: rgba(177, 31, 36, 0.25);
}

.feature-item .icon.major {
	margin-bottom: 1.5rem;
}

.feature-item h3 {
	color: var(--ws-black);
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 0.65rem;
	line-height: 1.25;
}

.feature-item p {
	color: var(--ws-gray-700);
	margin: 0;
	line-height: 1.7;
	font-size: 0.98rem;
}

.feature-item .icon.major:before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	background: rgba(177, 31, 36, 0.1);
	border-radius: var(--radius-pill);
	color: var(--ws-red) !important;
	font-size: 1.3rem;
	box-shadow: none;
	line-height: 1;
}

.main {
	background: var(--ws-white);
}

.main.alt {
	background: var(--ws-gray-100);
}

.main.accent2 {
	background: linear-gradient(135deg, #1a1a1a 0%, #343434 100%);
}

.main.accent2,
.main.accent2 h1,
.main.accent2 h2,
.main.accent2 h3,
.main.accent2 h4,
.main.accent2 p,
.main.accent2 li,
.main.accent2 strong {
	color: var(--ws-white) !important;
}

.main header.accent1 {
	background: linear-gradient(90deg, var(--ws-red) 0%, #7c1115 100%);
}

.main header.accent1,
.main header.accent1 h2,
.main header.accent1 p {
	color: var(--ws-white) !important;
}

.tabs > li > h3 {
	background: var(--ws-black);
	color: var(--ws-white);
}

.tabs > li.active > h3,
.tabs > li.current > h3,
.tabs > li:hover > h3 {
	background: var(--ws-red);
}

.tabs > .titles > .title.active,
#wrapper > .main > header.accent1 + .tabs > .titles,
#wrapper > .main > header.accent1 + .tabs > .titles:before {
	background-color: var(--ws-red) !important;
	box-shadow: none !important;
}

.tabs > .titles > .title,
#wrapper > .main > header.accent1 + .tabs > .titles > .title,
#wrapper > .main.accent1 > .tabs > .titles > .title,
#wrapper > .main.accent2 > .tabs > .titles > .title,
#wrapper > .main > header.accent1 + .tabs > .titles > .title.active,
#wrapper > .main.accent1 > .tabs > .titles > .title.active,
#wrapper > .main.accent2 > .tabs > .titles > .title.active {
	color: var(--ws-white) !important;
}

.spotlight {
	background: #fafafa;
	border: var(--border-soft);
	box-shadow: var(--shadow-sm);
	border-radius: var(--radius-md);
}

.posts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.6rem;
}

.posts > * {
	width: auto !important;
	padding: 0 !important;
}

.posts > div {
	display: contents;
}

.posts > div > article {
	background: var(--ws-white);
	box-shadow: var(--shadow-sm);
	border: var(--border-soft);
	border-radius: var(--radius-md);
	overflow: hidden;
	margin: 0;
}

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

@media screen and (max-width: 736px) {
	.posts {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}

.posts > div > article > .content {
	background: var(--ws-white);
}

.posts > div > article h3,
.posts > div > article p,
.posts > div > article li,
.spotlight h4,
.spotlight p,
.fleet-card-content h3,
.fleet-card-content p {
	color: var(--ws-gray-900) !important;
}

#footer {
	background: linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
	color: rgba(255, 255, 255, 0.8);
}

#footer h3,
#footer h4,
#footer p,
#footer a,
#footer li,
#footer .menu {
	color: var(--ws-white) !important;
}

#footer .icons a {
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
	border-radius: 999px;
}

#footer .icons a:hover {
	background: rgba(177, 31, 36, 0.16);
}

#footer .footer-logo {
	display: block;
	max-width: 14rem;
	width: 100%;
	height: auto;
	margin: 0 0 1rem;
}

.fleet-overview {
	background: linear-gradient(180deg, #fcfcfc 0%, #f3f3f3 100%);
	padding-top: 3.5rem;
	padding-bottom: 4rem;
}

.fleet-overview .fleet-overview-header {
	max-width: 56rem;
	margin: 0 auto 3.25rem;
	text-align: center;
}

.fleet-overview .fleet-overview-header h2 {
	max-width: 44rem;
	margin: 0 auto 1rem;
	font-size: clamp(2.2rem, 4vw, 3.6rem);
	line-height: 1.02;
	letter-spacing: -0.03em;
}

.fleet-overview .fleet-overview-header p {
	max-width: 46rem;
	margin: 0 auto;
	color: var(--ws-gray-700);
	font-size: 1.08rem;
	line-height: 1.8;
}

.fleet-overview-switch {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: fit-content;
	gap: 0.55rem;
	padding: 0.45rem;
	margin: 0 auto 2rem;
	background: rgba(17, 17, 17, 0.06);
	border-radius: 999px;
	align-items: center;
	justify-content: center;
}

.fleet-overview-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.5rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--ws-gray-700);
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	padding: 0.95rem 1.5rem;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.fleet-overview-tab:hover {
	color: var(--ws-black);
	transform: translateY(-1px);
}

.fleet-overview-tab.is-active {
	background: var(--ws-red);
	color: var(--ws-white) !important;
	box-shadow: none;
	text-shadow: none;
}

.fleet-overview-stage {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
	gap: 1.5rem;
	align-items: stretch;
}

.fleet-overview-panel {
	display: none;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.fleet-overview-panel.is-active {
	display: grid;
}

.fleet-overview-stat {
	padding: 1.15rem 1.2rem;
	border-radius: var(--radius-md);
	background: var(--ws-white);
	border: var(--border-soft);
	box-shadow: var(--shadow-sm);
}

.fleet-overview-stat strong {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 1rem;
	color: var(--ws-black);
}

.fleet-overview-stat span {
	color: var(--ws-gray-700);
	line-height: 1.6;
	font-size: 0.96rem;
}

.fleet-overview-visual {
	position: relative;
	overflow: hidden;
	min-height: 33rem;
	border-radius: var(--radius-md);
	background: #121212;
	box-shadow: var(--shadow-md);
}

.fleet-overview-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transform: translateY(14px) scale(0.985);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.fleet-overview-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.fleet-overview-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fleet-overview-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.06) 0%, rgba(17, 17, 17, 0.62) 100%);
}

.fleet-overview-copy {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 1.7rem;
	color: var(--ws-white);
}

.fleet-overview-copy .fleet-overview-tag {
	display: inline-flex;
	margin-bottom: 0.9rem;
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: var(--ws-white);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fleet-overview-copy h3 {
	color: var(--ws-white);
	font-size: 2rem;
	margin-bottom: 0.55rem;
}

.fleet-overview-copy p {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.7;
}

#wrapper > .main.about-section {
	background: var(--ws-gray-100);
	padding-top: 5.5rem;
	padding-bottom: 5.5rem;
}

.about-header {
	max-width: 52rem;
	margin: 0 auto 2.35rem;
	text-align: center;
}

.about-header .about-kicker {
	margin-bottom: 1.15rem;
}

.about-header h2 {
	color: var(--ws-black);
	margin-bottom: 1rem;
	font-size: clamp(2.4rem, 4.6vw, 4rem);
	line-height: 1.02;
	letter-spacing: -0.035em;
}

.about-header p {
	margin: 0;
	color: var(--ws-gray-700);
	font-size: 1.08rem;
	line-height: 1.8;
}

.about-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.65rem;
	align-items: stretch;
}

.about-card,
.about-copy,
.about-visual {
	border-radius: var(--radius-md);
}

.about-copy,
.about-stats-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 24.5rem;
	padding: 2.7rem;
	background: var(--ws-white);
	border: var(--border-soft);
	box-shadow: var(--shadow-sm);
}

.about-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 1rem;
	padding: 0.4rem 0.85rem;
	border-radius: var(--radius-pill);
	background: rgba(177, 31, 36, 0.08);
	color: var(--ws-red);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.about-kicker::before {
	content: "";
	width: 0.4rem;
	height: 0.4rem;
	border-radius: var(--radius-pill);
	background: var(--ws-red);
}

.about-copy h2 {
	color: var(--ws-black);
	margin-bottom: 1.1rem;
	font-size: clamp(1.9rem, 2.2vw, 2.45rem);
	line-height: 1.08;
	letter-spacing: -0.025em;
	max-width: 11ch;
}

.about-lead {
	color: var(--ws-gray-700);
	font-size: 1.08rem;
	line-height: 1.85;
	margin-bottom: 0;
}

.about-note {
	margin-top: 1.7rem;
	padding-top: 1.35rem;
	border-top: var(--border-soft);
	color: var(--ws-gray-700);
	line-height: 1.75;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.8rem;
}

.about-stat {
	padding: 1.1rem 1rem 0 0;
	border-top: var(--border-soft);
}

.about-stat strong {
	display: block;
	color: var(--ws-black);
	font-size: 1.7rem;
	line-height: 1;
	margin-bottom: 0.3rem;
}

.about-stat span {
	color: var(--ws-gray-700);
	font-size: 0.92rem;
	line-height: 1.5;
}

.about-visual {
	position: relative;
	overflow: hidden;
	min-height: 24.5rem;
	box-shadow: var(--shadow-dark);
}

.about-visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.52) 100%);
}

.about-badge {
	position: absolute;
	left: 1.3rem;
	right: 1.3rem;
	bottom: 1.3rem;
	z-index: 1;
	padding: 1.1rem 1.2rem;
	border-radius: var(--radius-md);
	background: rgba(17, 17, 17, 0.68);
	border: var(--border-soft-dark);
}

.about-badge strong {
	display: block;
	color: var(--ws-white);
	margin-bottom: 0.25rem;
	font-size: 1.05rem;
}

.about-badge span {
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.55;
	font-size: 0.95rem;
}

.about-stats-card {
	position: relative;
}

.about-stats-card h3 {
	color: var(--ws-black);
	margin-bottom: 0.7rem;
	font-size: clamp(1.8rem, 2vw, 2.35rem);
	line-height: 1.08;
	max-width: 11ch;
}

.about-stats-card > p {
	margin: 0;
	color: var(--ws-gray-700);
	line-height: 1.75;
	font-size: 1rem;
}

#wrapper > .main.contact-section {
	background: var(--ws-white);
	padding-top: 5.25rem;
	padding-bottom: 5.25rem;
}

.contact-section .contact-header {
	max-width: 48rem;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.contact-section .contact-header h2 {
	color: var(--ws-black);
	margin-bottom: 0.9rem;
	font-size: clamp(2.3rem, 4.5vw, 3.8rem);
	line-height: 1.02;
	letter-spacing: -0.035em;
}

.contact-section .contact-header p {
	margin: 0;
	color: var(--ws-gray-700);
	line-height: 1.8;
	font-size: 1.05rem;
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.9fr);
	gap: 1.6rem;
	align-items: stretch;
}

.contact-form-card,
.contact-info-card {
	border-radius: var(--radius-md);
	border: var(--border-soft);
	background: var(--ws-white);
	box-shadow: var(--shadow-sm);
}

.contact-form-card {
	padding: 2.2rem;
}

.contact-info-card {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	background: var(--ws-gray-100);
}

.contact-card-title {
	margin-bottom: 1.2rem;
}

.contact-card-title h3,
.contact-info-card h3 {
	color: var(--ws-black);
	margin-bottom: 0.45rem;
	font-size: 1.6rem;
}

.contact-card-title p,
.contact-info-card p,
.contact-detail p,
.contact-note,
.contact-tagline {
	margin: 0;
	color: var(--ws-gray-700);
	line-height: 1.7;
}

.contact-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.contact-field-full {
	grid-column: 1 / -1;
}

.contact-form-card label {
	display: block;
	margin-bottom: 0.45rem;
	color: var(--ws-black);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
	border: 1px solid var(--ws-gray-300);
	background: var(--ws-white);
	color: var(--ws-black) !important;
	box-shadow: none;
	border-radius: var(--radius-sm);
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
	border-color: var(--ws-red);
	outline: none;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
	color: var(--ws-gray-500);
}

.contact-form-card select option {
	color: var(--ws-black);
}

.contact-form-card textarea {
	min-height: 11rem;
	resize: vertical;
}

.contact-actions {
	margin-top: 1.35rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	align-items: center;
}

.contact-actions .button {
	min-width: 14rem;
}

.contact-note {
	font-size: 0.92rem;
}

.contact-detail {
	padding: 1rem 0 0;
	border-top: var(--border-soft);
}

.contact-detail strong {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--ws-black);
	font-size: 0.98rem;
}

.contact-detail a {
	color: var(--ws-red) !important;
}

.contact-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-pills li {
	padding: 0.5rem 0.85rem;
	border-radius: var(--radius-pill);
	background: var(--ws-white);
	border: var(--border-soft);
	color: var(--ws-gray-900);
	font-size: 0.85rem;
	font-weight: 700;
}

.contact-tagline {
	padding-top: 0.2rem;
}

#header > nav > ul > li.current > a,
#header > nav > ul > li.active > a,
#header > nav > ul > li > a.icon:hover:before,
#header > .navPanelToggle:before {
	color: var(--ws-red) !important;
}

#wrapper > .main.accent1,
#wrapper > .main > header.accent1 {
	background-color: var(--ws-red) !important;
}

#wrapper > .main.accent1,
#wrapper > .main.accent1 h1,
#wrapper > .main.accent1 h2,
#wrapper > .main.accent1 h3,
#wrapper > .main.accent1 h4,
#wrapper > .main.accent1 p,
#wrapper > .main.accent1 li,
#wrapper > .main.accent1 a,
#wrapper > .main > header.accent1 a,
#wrapper > .main > header.accent1 strong,
#wrapper > .main > header.accent1 b {
	color: var(--ws-white) !important;
}

#wrapper > .main.accent2,
#wrapper > .main > header.accent2 {
	background-color: var(--ws-charcoal) !important;
}

#wrapper > .main.accent2 a,
#wrapper > .main > header.accent2 a {
	color: #ffd9da !important;
}

#wrapper > .main.accent1 .button,
#wrapper > .main > header.accent1 .button,
#wrapper > .main.accent2 .button,
#wrapper > .main > header.accent2 .button,
#footer .button {
	color: var(--ws-white) !important;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8) !important;
	background-color: transparent !important;
}

#wrapper > .main.accent1 .button:hover,
#wrapper > .main > header.accent1 .button:hover,
#wrapper > .main.accent2 .button:hover,
#wrapper > .main > header.accent2 .button:hover,
#footer .button:hover {
	background-color: rgba(255, 255, 255, 0.12) !important;
}

.fleet-carousel {
	position: relative;
	padding: 2.5rem 0 4rem;
	overflow: hidden;
}

.fleet-carousel .inner {
	max-width: none;
	width: 100%;
	padding: 0;
}

.fleet-carousel header {
	text-align: center;
	margin: 0 0 2rem;
}

.fleet-carousel header h2 {
	margin-bottom: 0;
}

.fleet-carousel .fleet-controls {
	pointer-events: none;
}

.fleet-carousel .fleet-control {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	margin-top: -1rem;
	border: var(--border-soft);
	border-radius: var(--radius-pill);
	background: var(--ws-white);
	box-shadow: var(--shadow-sm);
	color: var(--ws-black);
	cursor: pointer;
	pointer-events: auto;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fleet-carousel .fleet-control::before {
	content: "";
	display: block;
	width: 0.85rem;
	height: 0.85rem;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.fleet-carousel .fleet-control:hover {
	background: var(--ws-red);
	color: var(--ws-white);
	transform: translateY(-2px);
}

.fleet-carousel .fleet-control[data-fleet-scroll="prev"]::before {
	transform: rotate(-135deg);
}

.fleet-carousel .fleet-control[data-fleet-scroll="prev"] {
	left: 0.75rem;
}

.fleet-carousel .fleet-control[data-fleet-scroll="next"]::before {
	transform: rotate(45deg);
}

.fleet-carousel .fleet-control[data-fleet-scroll="next"] {
	right: 0.75rem;
}

.fleet-carousel .fleet-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 26rem;
	gap: 2rem;
	padding: 0 2rem 1rem;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	scrollbar-color: rgba(177, 31, 36, 0.55) rgba(0, 0, 0, 0.08);
}

.fleet-carousel .fleet-track::-webkit-scrollbar {
	height: 0.7rem;
}

.fleet-carousel .fleet-track::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.08);
	border-radius: 999px;
}

.fleet-carousel .fleet-track::-webkit-scrollbar-thumb {
	background: rgba(177, 31, 36, 0.55);
	border-radius: 999px;
}

.fleet-carousel .fleet-card {
	scroll-snap-align: start;
	background: #ffffff;
	border-radius: 0;
	box-shadow: none;
	overflow: hidden;
}

.fleet-carousel .fleet-card .image {
	display: block;
	margin: 0;
}

.fleet-carousel .fleet-card img {
	display: block;
	width: 100%;
	height: 18rem;
	object-fit: cover;
}

.fleet-carousel .fleet-card-content {
	padding: 2.5rem 2rem 2.75rem;
	text-align: center;
}

.fleet-carousel .fleet-card-content p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.9;
}

.fleet-carousel .fleet-card-content h3 {
	font-size: 2rem;
	margin-bottom: 1.2rem;
}

@media screen and (max-width: 980px) {
	.fleet-carousel .fleet-control {
		width: 4.75rem;
		height: 4.75rem;
		margin-top: -0.5rem;
	}
}

@media screen and (max-width: 736px) {
	#banner .content.primary {
		padding: 6.5rem 1.25rem 1.25rem 1.25rem;
	}

	.feature-strip .feature-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	#wrapper > .main.feature-strip {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.feature-item h3 {
		font-size: 1.4rem;
	}

	.fleet-carousel {
		padding: 2rem 0 3rem;
	}

	.fleet-carousel .fleet-track {
		grid-auto-columns: calc(100vw - 2.5rem);
		gap: 0.75rem;
		padding: 0 1.25rem 1rem;
		scroll-padding-left: 1.25rem;
	}

	.fleet-carousel .fleet-card img {
		height: 13rem;
	}

	.fleet-carousel .fleet-card-content {
		padding: 1.8rem 1.25rem 2rem;
	}

	.fleet-carousel .fleet-card-content h3 {
		font-size: 1.7rem;
	}

	.fleet-carousel .fleet-card-content p {
		font-size: 0.95rem;
		line-height: 1.75;
	}

	.fleet-carousel .fleet-control {
		width: 4rem;
		height: 4rem;
		top: 39%;
	}

	.fleet-carousel .fleet-control::before {
		width: 0.85rem;
		height: 0.85rem;
	}

	.fleet-carousel .fleet-control[data-fleet-scroll="prev"] {
		left: 0.35rem;
	}

	.fleet-carousel .fleet-control[data-fleet-scroll="next"] {
		right: 0.35rem;
	}

	.fleet-overview-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.fleet-overview-switch {
		grid-template-columns: 1fr;
		width: 100%;
		border-radius: 1.5rem;
	}

	.fleet-overview .fleet-overview-header {
		margin-bottom: 2rem;
	}

	.fleet-overview {
		padding-top: 2rem;
		padding-bottom: 2.5rem;
	}

	.fleet-overview .fleet-overview-header h2 {
		font-size: 2rem;
	}

	.fleet-overview .fleet-overview-header p {
		font-size: 1rem;
		line-height: 1.7;
	}

	.fleet-overview-tab {
		text-align: left;
		border-radius: 1rem;
	}

	.fleet-overview-stage {
		grid-template-columns: 1fr;
	}

	.fleet-overview-panel {
		grid-template-columns: 1fr;
	}

	.fleet-overview-visual {
		min-height: 24rem;
	}

	.fleet-overview-copy {
		padding: 1.2rem;
	}

	.fleet-overview-copy h3 {
		font-size: 1.6rem;
	}

	.about-layout,
	.about-stats {
		grid-template-columns: 1fr;
	}

	.about-section {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.about-header {
		margin-bottom: 1.6rem;
	}

	.about-header h2 {
		font-size: 2.2rem;
	}

	.about-header p {
		font-size: 1rem;
		line-height: 1.7;
	}

	.about-copy,
	.about-stats-card {
		padding: 1.4rem;
		min-height: 0;
	}

	.contact-section {
		padding-top: 2.75rem;
		padding-bottom: 2.75rem;
	}

	.contact-grid,
	.contact-form-grid {
		grid-template-columns: 1fr;
	}

	.contact-form-card,
	.contact-info-card {
		padding: 1.4rem;
	}

	.contact-section .contact-header {
		margin-bottom: 1.7rem;
	}

	.contact-section .contact-header h2 {
		font-size: 2.2rem;
	}

	.contact-section .contact-header p {
		font-size: 1rem;
		line-height: 1.7;
	}

	.about-copy h2 {
		font-size: 2rem;
		max-width: none;
	}

	.about-lead {
		font-size: 1rem;
		line-height: 1.7;
	}

	.about-visual {
		min-height: 22rem;
	}

	/* Kopfzeile am Handy in px: die Rem-Basis wechselt hier auf 11pt (=14,67px),
	   Rem-Werte wuerden die Groessen sonst unbeabsichtigt mitskalieren. */
	#header,
	#header.alt {
		height: 52px;
		line-height: 52px;
	}

	#header > .logo,
	#header.alt > .logo {
		top: 0;
		left: 14px;
	}

	#header > .logo .header-logo {
		height: 34px;
	}

	#header > .navPanelToggle,
	#header.alt > .navPanelToggle {
		display: flex !important;
		align-items: center;
		justify-content: center;
		top: 4px;
		right: 10px;
		width: 44px;
		height: 44px;
		padding: 0;
	}

	/* Tippflaeche bleibt 44px, sichtbar ist ein 36px-Kreis */
	#header > .navPanelToggle:before {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		font-size: 16px;
		line-height: 1;
		border-radius: var(--radius-pill);
		background: rgba(17, 17, 17, 0.55);
		border: 1px solid rgba(255, 255, 255, 0.18);
	}
}

@media screen and (max-width: 480px) {
	#banner .content.primary {
		padding: 6rem 1rem 1rem 1rem;
	}
}

/* ============================================================
   Fleet-Card Lightbox
   ============================================================ */
.fleet-card .image[data-lightbox] {
	position: relative;
	cursor: zoom-in;
	display: block;
}

.fleet-card .image[data-lightbox] .fleet-card-zoom {
	position: absolute;
	bottom: 0.75rem;
	right: 0.75rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	background: rgba(17, 17, 17, 0.78);
	color: var(--ws-white);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	backdrop-filter: blur(4px);
	transition: background 0.2s ease, transform 0.2s ease;
	pointer-events: none;
}

.fleet-card .image[data-lightbox]:hover .fleet-card-zoom {
	background: var(--ws-red);
	transform: translateY(-2px);
}

.fleet-card .image[data-lightbox] .fleet-card-zoom .icon {
	font-size: 0.78rem;
}

/* Lightbox overlay */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(8, 8, 8, 0.92);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	padding: 2rem;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.lightbox.is-open {
	display: flex;
	opacity: 1;
}

.lightbox-stage {
	position: relative;
	max-width: min(92vw, 1200px);
	max-height: min(86vh, 800px);
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.lightbox-image-wrap {
	position: relative;
	flex: 1 1 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
}

.lightbox-image {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	border-radius: 0.6rem;
	box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.5);
	object-fit: contain;
	background: #111;
}

.lightbox-caption {
	margin-top: 1rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.92rem;
	text-align: center;
	max-width: 60ch;
	min-height: 1.4em;
}

.lightbox-counter {
	display: block;
	margin-top: 0.3rem;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lightbox-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3rem;
	height: 3rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--ws-white);
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 1.1rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-btn:hover {
	background: var(--ws-red);
	border-color: var(--ws-red);
	transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
	left: -1.5rem;
}

.lightbox-next {
	right: -1.5rem;
}

.lightbox-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--ws-white);
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 1rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: background 0.2s ease;
}

.lightbox-close:hover {
	background: var(--ws-red);
	border-color: var(--ws-red);
}

@media screen and (max-width: 736px) {
	.lightbox {
		padding: 1rem;
	}

	.lightbox-prev {
		left: 0.25rem;
	}

	.lightbox-next {
		right: 0.25rem;
	}

	.lightbox-btn {
		width: 2.5rem;
		height: 2.5rem;
		font-size: 0.95rem;
		background: rgba(0, 0, 0, 0.55);
	}

	.lightbox-close {
		top: 0.5rem;
		right: 0.5rem;
		background: rgba(0, 0, 0, 0.55);
	}
}

/* =========================================================
   Fuhrpark-Teaser (Startseite) – kompakter Einstieg,
   Details liegen auf fuhrpark.html
   ========================================================= */

.fleet-teaser {
	padding: 4rem 0 4.5rem;
}

.fleet-teaser .inner {
	width: 78rem;
	max-width: calc(100% - 6rem);
}

.fleet-teaser-header {
	max-width: 52rem;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.fleet-teaser-header h2 {
	font-size: clamp(1.8rem, 2.4vw, 2.4rem);
	letter-spacing: -0.02em;
	margin: 0.4rem 0 1rem;
}

.fleet-teaser-header p {
	color: var(--ws-gray-700);
	line-height: 1.75;
	margin: 0;
}

.fleet-teaser-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}

.fleet-teaser-card {
	position: relative;
	display: block;
	border-radius: 1rem;
	overflow: hidden;
	text-decoration: none;
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fleet-teaser-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 1.5rem 2.8rem rgba(0, 0, 0, 0.14);
}

.fleet-teaser-card img {
	display: block;
	width: 100%;
	height: 15rem;
	object-fit: cover;
}

.fleet-teaser-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.78) 100%);
}

.fleet-teaser-copy {
	position: absolute;
	inset: auto 0 0 0;
	z-index: 1;
	padding: 1.4rem 1.5rem;
}

.fleet-teaser-copy strong {
	display: block;
	color: #ffffff;
	font-size: 1.25rem;
	letter-spacing: -0.01em;
	margin-bottom: 0.2rem;
}

.fleet-teaser-copy span {
	display: block;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.88rem;
	line-height: 1.5;
}

.fleet-teaser-actions {
	text-align: center;
}

.fleet-teaser-actions .button {
	min-width: 16rem;
}

/* =========================================================
   Kontakt-Band (Startseite) – ersetzt das lange Formular,
   das vollständige Formular liegt auf kontakt.html
   ========================================================= */

.contact-band {
	padding: 4rem 2rem;
	background: linear-gradient(135deg, #1a1a1a 0%, #343434 100%);
	color: #ffffff;
	text-align: center;
}

.contact-band .inner {
	width: 60rem;
	max-width: calc(100% - 4rem);
	margin: 0 auto;
}

.contact-band h2 {
	color: #ffffff !important;
	font-size: clamp(1.8rem, 2.4vw, 2.4rem);
	letter-spacing: -0.02em;
	margin: 0.4rem 0 1rem;
}

.contact-band > .inner > p {
	color: rgba(255, 255, 255, 0.86) !important;
	max-width: 42rem;
	margin: 0 auto 2rem;
	line-height: 1.75;
}

.contact-band .actions {
	justify-content: center;
	margin-bottom: 1.75rem;
}

.contact-band-facts {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-band-facts li {
	padding: 0.4rem 0.9rem;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.85rem;
}

@media screen and (max-width: 980px) {
	.fleet-teaser {
		padding: 3rem 0 3.5rem;
	}

	.fleet-teaser-grid {
		grid-template-columns: 1fr;
	}

	.fleet-teaser-card img {
		height: 13rem;
	}
}

@media screen and (max-width: 736px) {
	.contact-band {
		padding: 3rem 1.25rem;
	}

	.contact-band .actions {
		flex-direction: column;
		gap: 0.75rem;
	}

	.contact-band .actions li {
		padding: 0;
	}

	.contact-band .actions .button {
		width: 100%;
		min-width: 0;
	}

	.fleet-teaser-actions .button {
		width: 100%;
		min-width: 0;
	}
}

/* ============================================================
   Bausteine der Unterseiten
   Basiswerte fuer alle Seiten; seitenspezifisch bleibt in den
   Seiten selbst nur noch, was sich wirklich unterscheidet
   (z. B. das Hintergrundbild des Seitenkopfs).
   ============================================================ */
.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 1rem;
	padding: 0.45rem 0.9rem;
	border-radius: var(--radius-pill);
	background: rgba(177, 31, 36, 0.08);
	color: var(--ws-red);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.section-kicker::before {
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-radius: var(--radius-pill);
	background: var(--ws-red);
}

.section-kicker.on-dark {
	background: rgba(255, 255, 255, 0.08);
	color: #ffd9da;
}

/* Seitenkopf der Unterseiten. Das Hintergrundbild setzt jede Seite selbst. */
#page-hero {
	position: relative;
	padding: 6rem 2rem 5rem;
	color: var(--ws-white);
	text-align: center;
	overflow: hidden;
}

#page-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 -1px 0;
	height: 6rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--ws-white) 100%);
	pointer-events: none;
}

#page-hero .hero-inner {
	position: relative;
	z-index: 1;
	max-width: 60rem;
	margin: 0 auto;
}

#page-hero h1 {
	color: var(--ws-white);
	font-size: clamp(2.2rem, 4.2vw, 3.6rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0.5rem 0 1.25rem;
}

#page-hero p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.05rem;
	line-height: 1.7;
	max-width: 42rem;
	margin: 0 auto;
}

/* Hinweisbanner fuer noch abzustimmende Inhalte */
.placeholder-banner {
	max-width: 56rem;
	margin: 0 auto 2rem;
	padding: 0.85rem 1.25rem;
	background: #fff7d6;
	border: 1px solid #f1d875;
	color: #6b5310;
	border-radius: 0.6rem;
	font-size: 0.88rem;
	line-height: 1.55;
	text-align: center;
}

.placeholder-banner strong {
	color: #6b5310;
}

@media screen and (max-width: 736px) {
	#page-hero {
		padding: 4rem 1.25rem 3.5rem;
	}
}

/* ============================================================
   Rechtstexte (Impressum, Datenschutzerklaerung)
   ============================================================ */
.legal-page {
	padding: 3.5rem 0 4.5rem;
}

.legal-page .inner {
	width: 58rem;
	max-width: calc(100% - 4rem);
}

.legal-block + .legal-block {
	margin-top: 2.75rem;
}

.legal-block h2 {
	margin-bottom: 0.9rem;
	font-size: clamp(1.4rem, 2vw, 1.85rem);
	letter-spacing: -0.015em;
}

.legal-block h3 {
	margin: 1.6rem 0 0.55rem;
	color: var(--ws-black);
	font-size: 1.05rem;
}

.legal-block p {
	margin-bottom: 1rem;
	color: var(--ws-gray-700);
	line-height: 1.75;
}

.legal-block ul {
	margin: 0 0 1rem;
	padding-left: 1.3rem;
	list-style: disc;
}

.legal-block li {
	margin-bottom: 0.45rem;
	padding-left: 0.25rem;
	color: var(--ws-gray-700);
	line-height: 1.7;
}

/* Datenblock im Impressum: Bezeichnung links, Angabe rechts */
.legal-data {
	display: grid;
	grid-template-columns: 15rem minmax(0, 1fr);
	gap: 0.65rem 1.5rem;
	margin: 0 0 1.25rem;
	padding: 1.5rem 1.75rem;
	background: var(--ws-white);
	border: var(--border-soft);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.legal-data dt {
	color: var(--ws-black);
	font-weight: 700;
}

.legal-data dd {
	margin: 0;
	color: var(--ws-gray-700);
	line-height: 1.7;
}

/* Noch zu ergaenzende Angaben - bewusst auffaellig */
.tbd {
	display: inline-block;
	padding: 0.05rem 0.45rem;
	border-radius: 0.4rem;
	background: #fff7d6;
	border: 1px dashed #e0bf4e;
	color: #6b5310;
	font-size: 0.94em;
	font-weight: 700;
}

.legal-updated {
	margin-top: 2.75rem;
	padding-top: 1.25rem;
	border-top: var(--border-soft);
	color: var(--ws-gray-500);
	font-size: 0.9rem;
}

@media screen and (max-width: 736px) {
	.legal-page {
		padding: 2.5rem 0 3.5rem;
	}

	.legal-page .inner {
		max-width: calc(100% - 2.5rem);
	}

	.legal-data {
		grid-template-columns: 1fr;
		gap: 0.1rem;
		padding: 1.25rem 1.35rem;
	}

	.legal-data dd {
		margin-bottom: 0.85rem;
	}
}

/* ============================================================
   Hinweis zu Cookies / lokaler Speicherung
   Bewusst klein und unten links - kein Overlay, die Seite
   bleibt bedienbar. z-index liegt ueber dem Header (10000),
   aber unter dem Menuepanel (10002).
   ============================================================ */
.cookie-notice {
	position: fixed;
	left: 1.25rem;
	bottom: 1.25rem;
	z-index: 10001;
	width: min(23rem, calc(100vw - 2.5rem));
	padding: 1.15rem 1.25rem 1.25rem;
	background: rgba(17, 17, 17, 0.95);
	border: var(--border-soft-dark);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-dark);
	color: rgba(255, 255, 255, 0.82);
	opacity: 0;
	transform: translateY(1.5rem);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-notice.is-visible {
	opacity: 1;
	transform: none;
}

.cookie-notice-title {
	margin: 0 0 0.4rem;
	color: var(--ws-white);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.cookie-notice-text {
	margin: 0 0 1.1rem;
	font-size: 0.86rem;
	line-height: 1.65;
}

.cookie-notice-text a {
	color: var(--ws-white) !important;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.cookie-notice-text a:hover {
	color: #ffd9da !important;
}

.cookie-notice-ok {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: auto;
	padding: 0.6rem 1.4rem;
	border: 0;
	border-radius: var(--radius-pill);
	background: var(--ws-red);
	/* Die allgemeine Button-Regel weiter oben setzt Farbe und Rahmen mit !important,
	   deshalb hier ebenfalls - sonst steht roter Text auf rotem Grund. */
	color: var(--ws-white) !important;
	box-shadow: none !important;
	font-family: inherit;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: background 0.2s ease;
}

.cookie-notice-ok:hover,
.cookie-notice-ok:focus {
	background: var(--ws-red-dark);
	color: var(--ws-white) !important;
}

@media screen and (max-width: 736px) {
	.cookie-notice {
		left: 0.9rem;
		right: 0.9rem;
		bottom: 0.9rem;
		width: auto;
		padding: 1rem 1.1rem 1.1rem;
	}
}

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