
/* ==========================
CSS Presets
========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif;
}


/* ==========================
Bootsrap Modified
========================== */
.btn {
	border-radius: 0px;
}

.btn-dark {
	background-color: #000;
	border-color: #000;
}

/* ==========================
Header
========================== */
.site-header {
	padding: 1rem 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: transparent;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity .35s ease,
		transform .35s ease,
		visibility .35s ease;
}

/* Visible after scroll */
.site-header.show {
	opacity: 1;
	visibility: visible;
	background-color: #fff0;
	backdrop-filter: blur(5px);
}

.header-inner {
	height: 90px;
	padding: 0 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

/* ==========================
Call Button
========================== */
.header-call {
	width: fit-content;
	height: auto;
	padding: 1rem 1.5rem;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 600;
	transition: .3s ease;
	color: #fff;
	background-color: #000;
	transform: translateX(-100%);
	opacity: 0;
}

.site-header.show .header-call {
	transform: translateX(0%);
	opacity: 1;
}

.header-call:hover {
	opacity: .8;
	color: #fff;
}

/* ==========================
Logo
========================== */
.header-logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-logo img {
	width: auto;
	height: 55px;
	display: block;
	transition: .3s ease;
	transform: scale(0);
	filter: invert(1);
}

.site-header.show .header-logo img {
	transform: scale(1);
}

/* ==========================
Hamburger
========================== */
.menu-trigger {
	width: 3rem;
	height: 3rem;
	border: none;
	background: #000;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .45rem;
	opacity: 0;
	transform: translateX(100%);
	transition: .3s ease;
}

.site-header.show .menu-trigger {
	opacity: 1;
	transform: translateX(0);
}

.menu-trigger span {
	width: 1.75rem;
	height: 2px;
	background: #fff;
	display: block;
	transition: .35s ease;
}

/* Hamburger → X */
.menu-trigger.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.menu-trigger.active span:nth-child(2) {
	opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* ==========================
Sidebar
========================== */
.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: 25rem;
	max-width: 90vw;
	height: 100vh;
	background: #111;
	z-index: 10000;
	transform: translateX(-100%);
	opacity: 0;
	visibility: hidden;
	transition: .4s ease;
}

.sidebar.show {
	transform: translateX(0%);
	opacity: 1;
	visibility: visible;
}

/* Optional Overlay */
.sidebar-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .5);
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(3px);
	z-index: 9999;
	transition: .3s ease;
}

.sidebar-overlay.show {}

.sidebar-overlay.show {
	opacity: 1;
	visibility: visible;
}

.sidebar {
    overflow-y: auto;
}

.sidebar-inner {
    min-height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.sidebar-logo {
    margin-bottom: 3rem;
}

.sidebar-logo img {
    height: 50px;
    width: auto;
    filter: invert(1);
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav > ul > li {
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.sidebar-nav a,
.submenu-trigger {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: none;
    border: none;

    color: #fff;
    text-decoration: none;

    font-size: 1rem;
    font-weight: 500;

    cursor: pointer;
}

.submenu {
    display: none;
    padding-left: 1rem;
    padding-bottom: 1rem;
}

.submenu.show {
    display: block;
}

.submenu a {
    padding: .5rem 0;
    opacity: .75;
    font-size: .95rem;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 3rem;
}

.sidebar-cta {
    width: 100%;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #000;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .1rem;
    font-weight: 600;

    margin-bottom: 2rem;
}

.sidebar-contact {
    display: flex;
    gap: 1rem;
}

.sidebar-contact a {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    border: 1px solid rgba(255,255,255,.2);

    text-decoration: none;
}

/* ==========================
Hero Block
========================== */
.hero-block {
	width: 100%;
	height: 100vh;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}

.hero-block::before {
	content: "";
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	background-color: #0009;
	backdrop-filter: blur(3px);
}

.hero-content {
	width: 100%;
	max-width: 767px;
	height: auto;
	padding: 3rem 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 1.5rem;
	position: relative;
}

.hero-content img {
	width: 100%;
	max-width: 45rem;
	height: auto;
	margin: 0 auto;
	display: block;
	transition:
		opacity 0.4s ease,
		transform 0.4s ease;
	filter: invert(1);
}

.hero-content img.logo-hidden {
	opacity: 0;
	transform: scale(0);
}

.hero-content h1 {
	margin: 0;
	font-size: 3.5rem;
	font-weight: 300;
	line-height: normal;
	color: #fff;
	text-align: center;
}

/* ===================================
Hero Video Block
=================================== */
.hero-video-block {
	position: relative;
	min-height: 700px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* Background Video */
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Dark Overlay */
.hero-video-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom,
			rgba(0, 0, 0, .45),
			rgba(0, 0, 0, .65));
	z-index: 1;
	backdrop-filter: blur(5px);
}

/* Content */
.hero-video-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
}

.hero-video-label {
	display: inline-block;
	font-size: .85rem;
	font-weight: 500;
	letter-spacing: .25rem;
	text-transform: uppercase;
	margin-bottom: 1rem;
	opacity: .8;
}

.hero-video-content h2 {
	font-size: clamp(3rem, 6vw, 6rem);
	font-weight: 300;
	line-height: 1;
	margin-bottom: 1.5rem;
}

.hero-video-content p {
	font-size: 1.15rem;
	line-height: 1.8;
	max-width: 600px;
	margin: 0 auto 2rem;
	opacity: .9;
}

/* Button */
.hero-video-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	height: 60px;
	padding: 0 2rem;
	border: 1px solid #fff;
	color: #fff;
	text-decoration: none;
	font-size: .95rem;
	font-weight: 600;
	letter-spacing: .08rem;
	text-transform: uppercase;
	transition: .35s ease;
}

.hero-video-btn:hover {
	background: #fff;
	color: #000;
}

/* Responsive */
@media (max-width: 991px) {
	.hero-video-block {
		min-height: 600px;
	}

	.hero-video-content h2 {
		font-size: 3.5rem;
	}

	.hero-video-content p {
		font-size: 1rem;
	}
}

@media (max-width: 767px) {
	.hero-video-block {
		min-height: 500px;
	}

	.hero-video-content h2 {
		font-size: 2.5rem;
	}

	.hero-video-btn {
		width: 100%;
		max-width: 280px;
	}
}

/* ==================================
Editorial Section
================================== */
.editorial-block {
	background-color: #000;
}

.editorial-wrapper {
	display: flex;
	min-height: 300vh;
}

/* ==========================
Left Side
========================== */
.editorial-media {
	width: 50%;
	position: relative;
}

.editorial-media-inner {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
}

.editorial-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ==========================
Right Side
========================== */
.editorial-content {
	width: 50%;
	background-color: #fff;
}

.editorial-content-inner {
	padding: 10rem 8rem;
}

.editorial-item {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.editorial-item h2 {
	font-size: 3rem;
	font-weight: 300;
	line-height: 1.3;
	color: #a36d4d;
	margin-bottom: 2rem;
}

.editorial-item p {
	font-size: 1.15rem;
	line-height: 2;
	color: #000;
	max-width: 600px;
	margin-bottom: 3rem;
}

.editorial-item a {
	width: fit-content;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
	color: #fff;
	background-color: #000;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .1rem;
	font-weight: 600;
}

.editorial-item a::after {
	content: "→";
	transition: .3s ease;
}

.editorial-item a:hover::after {
	transform: translateX(8px);
}

@media (max-width: 991px) {
	.editorial-wrapper {
		flex-direction: column;
		min-height: auto;
	}

	.editorial-media,
	.editorial-content {
		width: 100%;
	}

	.editorial-media-inner {
		position: relative;
		height: 60vh;
	}

	.editorial-content-inner {
		padding: 4rem 2rem;
	}

	.editorial-item {
		min-height: auto;
		margin-bottom: 5rem;
	}

	.editorial-item h2 {
		font-size: 2rem;
	}
}

/* ==========================
Featured Services
========================== */

.featured-services {
    position: relative;
    background: #f7f3ef;
}

.featured-services-reverse {
    background: #ffffff;
}

.featured-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.featured-header h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.featured-header p {
    max-width: 700px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.9;
}

.featured-sticky {
    position: sticky;
    top: 0;
    height: calc(100vh + 122px);
    overflow: hidden;
}

.featured-track {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-inline: 8rem;
    will-change: transform;
}

.service-card {
    flex: 0 0 38vw;
    position: relative;
}

.service-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.service-card-media img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .7s ease;
}

.image-secondary {
    opacity: 0;
    transform: scale(1.1);
}

.service-card:hover .image-secondary {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover .image-primary {
    opacity: 0;
}

.service-card-content {
    width: 100%;
    height: auto;
    padding: 1rem 2.5rem;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    background-color: #0005;
    backdrop-filter: blur(3px);
}

.service-card-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card-content p {
    line-height: 1.8;
    color: #fff;
    text-align: center;
}

/* ==========================
How We Work
========================== */

.work-block {
    position: relative;
    height: 500vh;
    background: #000;
}

.work-sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background */

.work-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.work-bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;

    position: absolute;
    inset: 0;

    transform: scale(1);
    transition: transform .2s linear;
}

.work-overlay {
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.85),
        rgba(0,0,0,.45)
    );
}

/* Content */

.work-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 100%;
    margin-left: 10%;
    color: #fff;
}

.work-label {
    display: inline-block;

    margin-bottom: 1rem;

    text-transform: uppercase;
    letter-spacing: .2rem;

    opacity: .7;
}

.work-content h2 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

/* Steps */

.work-steps {
    position: relative;
}

.work-step {
    position: absolute;
    top: 0;
    left: 0;

    max-width: 550px;

    opacity: 0;
    transform: translateY(50px);

    transition:
    opacity .6s ease,
    transform .6s ease;
}

.work-step.active {
    opacity: 1;
    transform: translateY(0);
}

.work-step span {
    display: block;

    font-size: 1rem;
    letter-spacing: .3rem;

    color: #b68d5d;

    margin-bottom: 1rem;
}

.work-step h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.work-step p {
    font-size: 1.15rem;
    line-height: 2;
}

@media(max-width:991px){

    .work-content {
        padding: 2rem;
        margin-left: 0;
    }

    .work-content h2 {
        font-size: 3rem;
        margin-bottom: 4rem;
    }

    .work-step h3 {
        font-size: 2rem;
    }

}


/* ==========================
Accessories Block
========================== */

.accessories-block {
	position: relative;
	padding: 8rem 0;
	background: #111;
	color: #fff;
}

.accessories-block .container {
	max-width: 1400px;
}

.accessories-block h2 {
	font-size: 5rem;
	font-weight: 300;
	line-height: 1.1;
	margin-bottom: 2rem;
}

.accessories-block p {
	font-size: 1.15rem;
	line-height: 2;
	max-width: 600px;
	margin-bottom: 3rem;
	opacity: .9;
}

.accessories-block a {
	width: fit-content;
	height: 60px;

	padding: 0 2rem;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	text-decoration: none;

	background: #fff;
	color: #000;

	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08rem;

	transition: .3s ease;
}

.accessories-block a:hover {
	background: #b68d5d;
	color: #fff;
}

.accessories-block .col-6:last-child {
	overflow: hidden;
}

.accessories-block img {
	width: 100%;
	height: 700px;
	object-fit: cover;
	display: block;

	transform: scale(1);
	transform-origin: center center;

	will-change: transform;

	transition: transform .15s linear;
}

@media(max-width:991px){

	.accessories-block {
		padding: 5rem 0;
	}

	.accessories-block h2 {
		font-size: 3rem;
	}

	.accessories-block img {
		height: 500px;
	}

}


/* =========================
   Tailoring Experience
========================= */

.experience-block {
	padding: 140px 0;
	background: #f8f6f2;
	position: relative;
	overflow: hidden;
}

.experience-header {
	max-width: 800px;
	margin: 0 auto 80px;
	text-align: center;
}

.experience-label {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: #8a7a62;
}

.experience-header h2 {
	font-family: "Playfair Display", serif;
	font-size: clamp(42px, 5vw, 72px);
	margin-bottom: 20px;
	font-weight: 500;
}

.experience-header p {
	max-width: 650px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.8;
	color: #666;
}

.experience-grid {
	max-width: 1400px;
	margin: auto;
	padding: 0 40px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.experience-card {
	background: #fff;
	padding: 50px;
	display: flex;
	align-items: center;
	gap: 50px;
	border: 1px solid rgba(0,0,0,.08);
	transition: all .5s ease;
	cursor: pointer;
	position: relative;
}

.experience-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 60px rgba(0,0,0,.08);
}

.experience-number {
	font-family: "Playfair Display", serif;
	font-size: 80px;
	line-height: 1;
	color: rgba(0,0,0,.08);
	flex-shrink: 0;
	width: 120px;
}

.experience-content {
	flex: 1;
}

.experience-content h3 {
	font-size: 34px;
	margin-bottom: 16px;
	font-family: "Playfair Display", serif;
}

.experience-content p {
	margin: 0;
	font-size: 17px;
	line-height: 1.9;
	color: #666;
	max-width: 900px;
}

.experience-arrow {
	font-size: 24px;
	transition: all .4s ease;
}

.experience-card:hover .experience-arrow {
	transform: translateX(10px);
}

@media(max-width:991px){

	.experience-card{
		flex-direction:column;
		align-items:flex-start;
		padding:40px;
		gap:25px;
	}

	.experience-number{
		font-size:60px;
		width:auto;
	}

	.experience-content h3{
		font-size:28px;
	}
}