.material-symbols-outlined {
	font-variation-settings:
		"FILL" 0,
		"wght" 400,
		"GRAD" 0,
		"opsz" 24;
}

.nav-scrolled {
	background-color: rgb(251 249 252 / 0.95);
	backdrop-filter: blur(12px);
	box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	height: 4rem;
}

.active-nav {
	border-bottom: 2px solid #00050d;
	padding-bottom: 4px;
}

.active-nav-border {
	border-bottom: 2px solid #00050d;
}

.nav-underline {
	position: relative;
}

.nav-underline::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: currentColor;
	transition: width 0.3s ease;
}

.nav-underline:hover::after {
	width: 100%;
}

.luxury-underline {
	position: relative;
	text-decoration: none;
}

.luxury-underline::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: -2px;
	left: 0;
	background-color: currentColor;
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.luxury-underline:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.service-card:hover .service-icon {
	transform: translateY(-4px);
}

.luxury-shadow {
	box-shadow: 0 20px 40px -15px rgba(10, 31, 51, 0.1);
}

.editorial-shadow {
	box-shadow: 0 20px 40px -15px rgba(10, 31, 51, 0.1);
}

.book-cover-shadow {
	box-shadow:
		10px 10px 30px rgba(0, 0, 0, 0.1),
		0 0 5px rgba(0, 0, 0, 0.05);
}

.editorial-text-shadow {
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.grain-texture {
	background-image: url("https://www.transparenttextures.com/patterns/felt.png");
	opacity: 0.03;
	pointer-events: none;
}

.perspective-card {
	perspective: 1000px;
}

.truth-card-gradient {
	background: linear-gradient(135deg, #fbf9f8 0%, #f5f3f3 100%);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.3s ease-out,
		padding 0.3s ease;
}

.accordion-item.active .accordion-content {
	max-height: 500px;
	padding-bottom: 24px;
}

.accordion-item.active .icon-toggle {
	transform: rotate(180deg);
}

.sticky-sidebar {
	top: 120px;
}

.progress-bar {
	height: 3px;
	background: linear-gradient(to right, #0a1f33 var(--scroll), transparent 0);
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #fbf9f8;
}

::-webkit-scrollbar-thumb {
	background: #0a1f33;
}

.editorial-content h2 {
	font-family: "Space Grotesk", sans-serif;
	font-size: 32px;
	line-height: 40px;
	font-weight: 500;
	margin-top: 48px;
	margin-bottom: 16px;
	color: #00050d;
}

.editorial-content p {
	font-family: "Manrope", sans-serif;
	font-size: 20px;
	line-height: 32px;
	font-weight: 400;
	margin-bottom: 48px;
	color: #43474c;
}

.editorial-content ul {
	margin-bottom: 48px;
}

.editorial-content ul > :not(:last-child) {
	margin-bottom: 8px;
}

.editorial-content li {
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: #43474c;
	display: flex;
	align-items: flex-start;
}

.editorial-content li::before {
	content: "•";
	color: #0a1f33;
	margin-right: 12px;
	font-weight: bold;
}

.gallery-container {
	cursor: grab;
}

.gallery-container:active {
	cursor: grabbing;
}

.no-scrollbar::-webkit-scrollbar {
	display: none;
}

.no-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}
