*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--cr: #F2E8D5;
	--noir: #0A0807;
	--ambre: #9E7C54;
	--vin: #5A1E2A;
	--terre: #C45C3A;
	--rose: #E8C5A0;
	--gris: #6B5D55;
	--gris2: #A0918A;
	--lin: #EDE0C8;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'DM Sans', sans-serif;
	background: var(--cr);
	color: var(--noir);
	overflow-x: hidden;
	cursor: none;
	font-size: 14px;
}

::selection {
	background: var(--ambre);
	color: var(--noir);
}

::-webkit-scrollbar {
	width: 2px;
}

::-webkit-scrollbar-thumb {
	background: var(--ambre);
}

a,
.btn,
.btn::before,
.btn::after,
.em2-btn,
.em2-btn.in,
.em2-btn::before,
.em2-btn::after,
.em2-animate,
.em2-animate.in,
.em2-animate::before,
.em2-animate::after,
.em2-animate *,
.footer-widget ul li a::before,
ul.mainmenu>li>a::after,
button.owl-next,
button.owl-prev,
.owl-carousel .owl-nav button *,
.owl-carousel .owl-nav button::after,
.owl-carousel button.owl-dot {
	-webkit-transition: all ease .3s;
	-moz-transition: all ease .3s;
	-ms-transition: all ease .3s;
	-o-transition: all ease .3s;
	transition: all ease .3s;
}

/* CURSOR */
.c1,
.c2 {
	position: fixed;
	pointer-events: none;
	z-index: 9999;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
}

.c1 {
	width: 9px;
	height: 9px;
	background: var(--ambre);
	transition: transform .2s, background .3s, width .3s, height .3s;
}

.c2 {
	width: 30px;
	height: 30px;
	border: 1px solid var(--ambre);
	opacity: .4;
	transition: left .07s, top .07s, opacity .3s, transform .3s;
}

/* HEADER */
.em2-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 500;
	padding: 28px 56px;
	transition: padding .5s, background .5s, backdrop-filter .5s;

	&.is-scrolled {
		background: rgba(10, 8, 7, .88);
		backdrop-filter: blur(20px);
	}
}

.em2-header__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.em2-nav .em2-nav__list {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 32px;

	& li {
		position: relative;
	}
}

.em2-nav .em2-nav__list>li>a {
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(242, 232, 213, .45);
	text-decoration: none;
}

.em2-nav .em2-nav__list a:hover,
.em2-nav li.current-menu-parent > a,
.em2-nav li.current-menu-item > a {
	color: var(--ambre);
}

.em2-nav .sub-menu {
	top: 100%;
	min-width: 210px;
	padding: 0px;
	position: absolute;
	z-index: 99;
	visibility: hidden;
	list-style: none;
	-webkit-transition: all ease-out .3s;
	-moz-transition: all ease-out .3s;
	-ms-transition: all ease-out .3s;
	-o-transition: all ease-out .3s;
	transition: all ease-out .3s;
	opacity: 0;
	transform: scaleY(0);
	left: 0px;
	overflow: hidden;
	background: rgba(10, 8, 7, .88);
	backdrop-filter: blur(20px);

	&>* {
		white-space: nowrap;
		visibility: hidden;
	}

	& .sub-menu {
		left: 100%;
		top: -5px;
	}

	& a {
		position: relative;
		font-size: 12px;
		white-space: normal;
		color: rgba(242, 232, 213, .45);
		padding: 10px 20px;
		display: block;
		text-decoration: none;

		&:hover {
			color: var(--ambre);
		}
	}

}

.em2-nav .em2-nav__list li:hover>.sub-menu {
	visibility: visible;
	transform: scaleY(1);
	opacity: 1;
	overflow: unset;

	&>* {
		visibility: visible;
	}
}

/* Burger */
.em2-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.em2-burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--ambre);
	border-radius: 2px;
	transition: all 0.3s;
}
.em2-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.em2-burger.is-open span:nth-child(2) { opacity: 0; }
.em2-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* FOOTER */
footer {
	background: var(--noir);
	padding: 70px 0px 35px 0px;
	color: rgba(242, 232, 213, .35);
	font-size: 12px;
	line-height: 1.7;
}

.footer-widget ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	gap: 10px;

	& li a {
		letter-spacing: .03em;
		color: rgba(242, 232, 213, .4);
		text-decoration: none;

		&:hover {
			color: var(--ambre);
		}
	}
}

.footer-widget .widget-title {
	font-size: 10px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--ambre);
	font-weight: 500;
	margin-bottom: 20px;
}

.em2-footer__bottom .container {
	border-top: 1px solid rgba(242, 232, 213, .08);
	padding-top: 25px;
	margin-top: 35px;
}
.em2-footer__top .row [class*='col'] .footer-widget{
	margin-bottom: 35px;
	&:last-child{
		margin-bottom: 0px;
	}
}
.social-links{
	display: flex;
    gap: 12px;
	& a{
		width: 34px;
	    height: 34px;
	    border: 1px solid rgba(242, 232, 213, .15);
	    border-radius: 50%;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    color: rgba(242, 232, 213, .4);
	    text-decoration: none;
	    font-size: 11px;
		&:hover{
			color: var(--ambre);
			border-color: var(--ambre);
		}
	}
}

/* CONTENT */
h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(64px, 8.5vw, 128px);
	font-weight: 400;
	line-height: .92;
	letter-spacing: -.03em;
}

h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(48px, 6vw, 88px);
	font-weight: 400;
	letter-spacing: -.03em;
	line-height: .9;
}

h3 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -.02em;
}

h4 {
	font-size: 14px;
	font-weight: 400;
}

.breadcrumb {
	font-size: 10px;
	letter-spacing: .3em;
	text-transform: uppercase;
	display: block;
	position: relative;
	z-index: 2;
}

.em2-title {
	font-family: 'Playfair Display', serif;

	& em {
		font-style: italic;
		color: var(--ambre);
	}

	& .stroke {
		-webkit-text-stroke: 2px var(--cr);
		color: transparent;
		font-style: italic;
	}
}

.em2-label {
	letter-spacing: .3em;
	text-transform: uppercase;
	display: block;
	font-size: 10px;
	color: var(--gris2);
	display: block;

	&.top {
		margin-bottom: 16px;
	}
}

.em2-text-column .em2-titles {
	margin-bottom: 28px;
}

.em2-text-column .em2-label.bottom::after {
	display: block;
	content: '';
	width: 44px;
	height: 2px;
	background: var(--ambre);
	margin-top: 20px;
}

.em2-buttons {
	display: flex;
	flex-direction: column;
	gap: 5;

	& .em2-btn {
		width: fit-content;
	}
}

.em2-article-item {
	background: var(--noir);
	overflow: hidden;
	cursor: default;
	transition: transform .4s cubic-bezier(.16, 1, .3, 1);
	height: 100%;

	& img {
		object-fit: cover;
		width: 100%;
	}

	& .wrap-inner {
		padding: 22px 24px 28px;

		& .heading-inner {
			margin-bottom: 8px;

			& .em2-label {
				font-size: 9.5px;
				letter-spacing: .22em;
				text-transform: uppercase;
				color: var(--ambre);
				display: block;

				&.top {
					margin-bottom: 8px;
				}
			}

			& .em2-title {
				font-family: 'Playfair Display', serif;
				font-size: 18px;
				font-weight: 700;
				color: var(--cr);
				margin-bottom: 0px;
			}
		}

		& .em2-block-content {
			font-size: 12.5px;
			color: rgba(242, 232, 213, .35);
			line-height: 1.7;
			font-weight: 300;
		}

		& .article-date {
			font-size: 11px;
			color: rgba(242, 232, 213, .28);
			letter-spacing: .06em;
			margin-top: 10px;
		}
	}

	& .thumb {
		position: relative;

		&::before,
		&::after {
			content: '';
			position: absolute;
			inset: 0;
			background: linear-gradient(to top, rgba(10, 8, 7, .85) 0%, transparent 55%);
			width: 100%;
			height: 100%;
			pointer-events: none;
		}

		&::before {
			background: linear-gradient(160deg, rgba(6, 10, 8, .55) 0%, rgba(20, 58, 36, .3) 100%);
		}
	}

	&:hover {
		transform: translateY(-5px);
	}
}
.em2-article-item.portfolio {
	& .em2-label {
		position: absolute;
		color: var(--ambre);
		bottom: 24px;
		left: 24px;
		z-index: 2;
	}
	& .em2-block-content {
		margin-bottom: 14px;
	}
}
.em2-blog .em2-article-item {
	position: relative;
	&.main,
	&.feature {
		& .wrap-inner .heading-inner .em2-title {
			font-size: clamp(22px, 2.5vw, 34px);
		}
	}
	&.main .wrap-inner {
		position: absolute;
		background: transparent;
		width: 100%;
		bottom: 0px;
		left: 0px;
		padding: 40px 36px;
	}

	&.feature {
		display: flex;
		align-items: center;

		& .wrap-inner {
			padding: 52px 48px;

			& .heading-inner,
			& .em2-block-content {
				margin-bottom: 20px;
			}
		}
	}

	&:hover .wrap-inner .heading-inner .em2-title {
		color: var(--ambre);
	}
}
.em2-portfolio .heading .em2-title,
.em2-heading-link.heading .em2-title{
  margin-bottom: 0px;
}
.em2-heading-link{
  margin-bottom: 35px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(10, 8, 7, .1);
}
.em2-text-column.style-1{
	& .row{
		align-items: center;
		margin-left: -15px;
		margin-right: -15px;
		& [class*='col-']{
			padding-left: 15px;
			padding-right: 15px;
      &:first-child{
        top: 120px;
      }
		}
	}
	& .em2-label{
		font-size: 10px;
	    letter-spacing: .3em;
	    text-transform: uppercase;
	    color: var(--ambre);
	    display: flex;
	    align-items: center;
	    gap: 14px;
		&.top{
		    margin-bottom: 36px;
		}
		&::before{
			content: '';
		    width: 28px;
		    height: 1px;
		    background: var(--ambre);
		}
	}
	& .em2-small-title{
		font-family: 'Instrument Serif', serif;
	    font-style: italic;
	    font-size: 18px;
	    color: var(--vin);
	    margin-top: 44px;
	}
	& .em2-block-content{
		font-size: 17px;
	    line-height: 1.8;
	    color: var(--gris);
	    font-weight: 300;
	    margin-bottom: 28px;
	}
}
.em2-qoute{
	font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--noir);
    padding: 36px 0 36px 36px;
    border-left: 2px solid var(--ambre);
    margin: 44px 0;
	& em{
		color: var(--ambre);
	    font-weight: 700;
	}
}
/* COMMON */
.em2-btn {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .12em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--noir);
	background: var(--ambre);
	padding: 16px 32px;
	&::after{
		content: '→';
	}
	&:hover {
		background: #bf7230;
		color: var(--cr);
	}
}

.em2-btn.em2-btn-secondary {
	background: var(--vin);
	color: var(--cr);

	&:hover {
		background: var(--noir);
	}
}

.em2-btn.em2-btn-outline {
	border: 1px solid rgba(212, 135, 58, .25);
	background: transparent;
	color: rgba(212, 135, 58, .6);
	&:hover {
		background: var(--ambre);
		border-color: var(--ambre);
		color: var(--noir);
	}
}

.em2-btn.em2-btn-bottom-line {
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(10, 8, 7, .55);
	border-bottom: 1px solid rgba(10, 8, 7, .2);
	padding-bottom: 4px;
	padding-left: 0px;
	padding-right: 0px;
	background: none;
	&::after{
		display: none;
	}
	&::before{
		content: '→';
	}
	&:hover {
		color: var(--noir);
		background: transparent;
		gap: 20px;
	}
}

.em2-readmore {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ambre);
	text-decoration: none;
	transition: gap .3s;
	&::after{
		content: '→';
	}
	&.prev::after{
		display: none;
	}
	&:hover {
		color: #bf7230;
		gap: 20px;
	}
}

.em2-block-content p:last-child {
	margin-bottom: 9px;
}

.em2Block {
	margin-bottom: 35px;
}

.form-label {
	display: block;
	font-size: 9.5px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gris2);
	margin-bottom: 9px;
}

.form-control,
.form-select {
	border: none;
	border-bottom: 1px solid rgba(10, 8, 7, .15);
	padding: 10px 0;
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	color: var(--noir);
	outline: none;
	background-color: transparent;
	border-radius: 0;
	font-weight: 300;

	&:focus {
		border-color: var(--ambre);
		outline: none;
		box-shadow: none;
		background-color: transparent;
	}
}

.form-control {
	background: transparent;
}

.form-control::placeholder {
	color: rgba(107, 93, 85, .35);
	font-weight: 300;
}

input.wpcf7-submit {
	border: none;
}

body .vc_row.vc_row-no-padding .vc_column-inner {
	padding-top: 0px;
}

.whiteColor,
.whiteColor .em2-title {
	color: var(--bs-white);
}

.whiteColor {

	& .form-control,
	& .form-select {
		border-color: rgba(242, 232, 213, .12);
		color: var(--bs-white);

		&:focus {
			border-color: var(--ambre);
		}
	}

	& .form-label,
	.form-control::placeholder {
		color: rgba(242, 232, 213, .28);
	}
}

body .tnp-subscription form {
	& .form-control {
		background: var(--noir);
		border: none;
		color: var(--cr);
		font-family: 'DM Sans', sans-serif;
		font-size: 14px;
		font-weight: 300;
		height: 50px;
	}

	& .em2-btn {
		border: none;
	}

	& .em2-block-content {
		font-size: 11px;
		color: rgba(10, 8, 7, .35);
		margin-top: 12px;
		font-weight: 300;
	}
}

/* ── REVEAL ── */
.em2-rv {
	opacity: 0;
	transform: translateY(44px);
	transition: opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1s cubic-bezier(.16, 1, .3, 1);
}

.em2-rv.in {
	opacity: 1;
	transform: translateY(0px);
}

/* RESPONSIVE */
@media only screen and (min-width: 769px) and (max-width: 991px){
	.em2-header__inner{
		display: block;
		text-align: center;
		& .em2-logo{
			display: inline-block;
			margin-bottom: 15px;
		}
	}
}
@media (min-width: 768px) {
	.em2-pd-md-left-100 {
		padding-left: 100px;
	}

	.em2-pd-md-right-100 {
		padding-right: 100px;
	}

	.container .row {
		margin-left: -1px;
		margin-right: -1px;

		& [class*='col-'] {
			padding-left: 1px;
			padding-right: 1px;
			margin-bottom: 2px;
		}
	}

	.em2-blog .wpb-content-wrapper .vc_row {
		margin-left: -1px;
		margin-right: -1px;
	}

	.em2-max-width-300,
	.em2-max-width-240,
	.em2-max-width-520 {

		&.text-md-end,
		&.text-md-center {
			& .em2-block-content {
				margin-left: auto;
			}
		}

		&.text-md-start,
		&.text-md-center {
			& .em2-block-content {
				margin-right: auto;
			}
		}
	}

	.em2-max-width-300 .em2-block-content {
		max-width: 300px;
	}

	.em2-max-width-240 .em2-block-content {
		max-width: 240px;
	}

	.em2-max-width-520 .em2-block-content {
		max-width: 520px;
	}

	.vc_row.em2-bg-one {
		position: relative;

		&::before {
			position: absolute;
			width: 50%;
			left: 0px;
			top: 0px;
			background: linear-gradient(160deg, rgba(90, 30, 42, .88) 0%, rgba(74, 21, 32, .75) 100%),
				url('https://images.unsplash.com/photo-1497366754035-f200968a6e23?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
			content: '';
			height: 100%;
			display: block !important;
		}
	}
}
@media (max-width: 768px){
	.em2-burger { display: flex; }
	.em2-nav {
		background: var(--noir);
		backdrop-filter: blur(20px);
		padding: 0;
		border-top: 1px solid rgba(242,232,213,.08);
		overflow-y: auto;
		width: 100%;
		visibility: hidden;
		position: absolute;
		top: 106px;
		right: -100%;
		opacity: 0;
		-webkit-transition: all ease .3s;
		-moz-transition: all ease .3s;
		-ms-transition: all ease .3s;
		-o-transition: all ease .3s;
		transition: all ease .3s;
	}
	.em2-nav.is-open {
		visibility: visible;
		opacity: 1;
		right: 0px;
		animation: menu 3s ease;
	}
	.em2-nav .em2-nav__list {
		display: block;
		& .sub-menu{
			position: static;
			transform: none;
			opacity: 1;
			background: none;
			border: none;
			margin-left: 15px;
			& > *{
				visibility: visible;
			}
			& li a{
				color: var(--cr);
			}
			& li.current-menu-item > a,
			& li.current-menu-parent > a,
			& li.current_page_parent > a,
			& li.current_page_ancestor > a{
				color: var(--ambre);
			}
		}
	}
	.em2-nav .em2-nav__list a { display: block; padding: 12px 16px; font-size: 15px; border-radius: 6px; }
	.em2-text-column .em2-label.bottom::after{
		display: none;
	}
	.em2-text-column.style-1 .row [class*='col-']{
		position: static !important;
	}
	.em2-blog .em2-article-item{
		margin-bottom: 15px;
		height: auto;
	}
	.em2-footer__top .row [class*='col-']{
		margin-bottom: 30px;
		&:last-child{
			margin-bottom: 0px;
		}
	}
}
@keyframes menuEffect{
	0%{
		visibility: hidden;
		opacity: 0;
		right: -100%;
	}
	100%{
		visibility: visible;
		opacity: 1;
		right: 0;
	}
}