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

:root {
	--g: #C9A96E;
	--gl: #D4BA8A;
	--b: #0A0A0A;
	--d: #1A1A1A;
	--ch: #2C2C2C;
	--gr: #808080;
	--grl: #B0B0B0;
	--w: #FAFAFA
}

html {
	scroll-behavior: smooth
}

body {
	font-family: 'Montserrat', sans-serif;
	background: var(--b);
	color: var(--w);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased
}

body.no-scroll {
	overflow: hidden
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 18px 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all .4s;
	background: transparent
}

nav.s {
	background: rgba(10, 10, 10, .95);
	backdrop-filter: blur(15px);
	padding: 10px 50px
}

nav .logo img {
	height: 36px;
	filter: brightness(0) invert(1)
}

.nl {
	display: flex;
	gap: 35px;
	list-style: none
}

.nl a {
	color: var(--w);
	text-decoration: none;
	font-size: .65rem;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
	transition: color .3s
}

.nl a:hover {
	color: var(--g)
}

.mbtn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
	padding: 5px
}

.mbtn span {
	width: 22px;
	height: 1px;
	background: var(--w)
}

.mnav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 10, 10, .97);
	z-index: 999;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 28px
}

.mnav.open {
	display: flex
}

.mnav a {
	color: var(--w);
	text-decoration: none;
	font-size: .9rem;
	letter-spacing: 4px;
	text-transform: uppercase;
	font-weight: 300;
	cursor: pointer
}

.mnav a:hover {
	color: var(--g)
}

.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden
}

.hbg {
	position: absolute;
	inset: 0;
	background: url('../images/pexels-sumit-kapoor-605208.webp') center/cover;
	filter: brightness(.3);
	animation: hz 20s ease-in-out infinite alternate
}

@keyframes hz {
	0% {
		transform: scale(1.08)
	}

	100% {
		transform: scale(1)
	}
}

.hov {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 10, 10, .4), rgba(10, 10, 10, .15) 40%, rgba(10, 10, 10, .6))
}

.hc {
	position: relative;
	z-index: 2;
	max-width: 750px;
	padding: 0 30px;
	animation: fu 1.2s ease .2s both
}

@keyframes fu {
	from {
		opacity: 0;
		transform: translateY(35px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.hc .hl {
	width: 300px;
	max-width: 75%;
	margin-bottom: 28px;
	filter: brightness(0) invert(1)
}

.hc .hd {
	width: 55px;
	height: 1px;
	background: var(--g);
	margin: 0 auto 25px
}

.hc .tg {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
	font-weight: 300;
	font-style: italic;
	color: var(--grl);
	line-height: 1.8;
	max-width: 560px;
	margin: 0 auto 12px
}

.hc .at {
	font-size: .65rem;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--g)
}

section {
	padding: 100px 0
}

.sh {
	text-align: center;
	margin-bottom: 70px
}

.sh .ol {
	font-size: .6rem;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--g);
	margin-bottom: 12px
}

.sh h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	font-weight: 400;
	margin-bottom: 18px
}

.sh .hdr {
	width: 45px;
	height: 1px;
	background: var(--g);
	margin: 0 auto 18px
}

.sh p {
	font-size: .82rem;
	color: var(--gr);
	font-weight: 300;
	max-width: 500px;
	margin: 0 auto;
	line-height: 1.8
}

.feat {
	background: var(--ch);
	padding: 45px 50px;
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(201, 169, 110, .15);
	border-bottom: 1px solid rgba(201, 169, 110, .15)
}

.fi {
	text-align: center
}

.fi .ic {
	color: var(--g);
	font-size: 1.3rem;
	margin-bottom: 8px
}

.fi h4 {
	font-size: .65rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 4px
}

.fi p {
	font-size: .7rem;
	color: var(--gr);
	font-weight: 300
}

.phil {
	background: var(--d);
	position: relative
}

.phil::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--g), transparent)
}

.phg {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center
}

.phi {
	overflow: hidden
}

.phi img {
	width: 100%;
	height: 550px;
	object-fit: cover;
	filter: brightness(.85)
}

.pht .ol {
	font-size: .6rem;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--g);
	margin-bottom: 18px
}

.pht h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.3rem;
	font-weight: 400;
	margin-bottom: 12px;
	line-height: 1.2
}

.pht h2 em {
	display: block;
	font-style: italic;
	color: var(--g)
}

.pht .td {
	width: 45px;
	height: 1px;
	background: var(--g);
	margin: 22px 0
}

.pht p {
	font-size: .85rem;
	color: var(--grl);
	line-height: 1.9;
	font-weight: 300;
	margin-bottom: 12px
}

.pht .hq {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.1rem;
	font-style: italic;
	color: var(--gl);
	border-left: 2px solid var(--g);
	padding-left: 18px;
	margin: 25px 0;
	line-height: 1.7
}

.sig {
	background: var(--d);
	position: relative
}

.sig::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--g), transparent)
}

.sgg {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center
}

.sgi {
	position: relative;
	cursor: pointer
}

.sgi img {
	width: 100%;
	max-width: 460px;
	display: block;
	margin: 0 auto;
	filter: drop-shadow(0 25px 50px rgba(0, 0, 0, .5));
	transition: transform .5s
}

.sgi:hover img {
	transform: scale(1.02)
}

.sgb {
	position: absolute;
	top: 18px;
	right: 18px;
	background: var(--g);
	color: var(--b);
	font-size: .5rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 7px 14px
}

.sgt .ol {
	font-size: .6rem;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--g);
	margin-bottom: 12px
}

.sgt h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.3rem;
	font-weight: 400;
	margin-bottom: 6px
}

.sgt .sub {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1rem;
	font-style: italic;
	color: var(--gl);
	margin-bottom: 18px
}

.sgt .sd {
	width: 45px;
	height: 1px;
	background: var(--g);
	margin: 22px 0
}

.sgt p {
	font-size: .82rem;
	color: var(--grl);
	line-height: 1.9;
	font-weight: 300;
	margin-bottom: 12px
}

.sgt .pd {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	color: var(--g);
	margin-top: 22px
}

.sgt .pd span {
	font-size: .75rem;
	color: var(--gr);
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	display: block;
	margin-top: 4px;
	letter-spacing: 2px;
	text-transform: uppercase
}

.ch h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	font-weight: 400;
	position: relative;
	display: inline-block;
	text-align: center
}

.ch h3::before,
.ch h3::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 50px;
	height: 1px;
	background: rgba(201, 169, 110, .3)
}

.ch h3::before {
	right: calc(100% + 18px)
}

.ch h3::after {
	left: calc(100% + 18px)
}

.ch {
	text-align: center;
	margin-bottom: 45px
}

.cs {
	margin-bottom: 90px
}

.pg {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 50px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px
}

.pc {
	background: var(--d);
	overflow: hidden;
	transition: transform .5s, box-shadow .5s;
	cursor: pointer
}

.pc:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 50px rgba(0, 0, 0, .5), 0 0 0 1px rgba(201, 169, 110, .12)
}

.pc .pi {
	position: relative;
	overflow: hidden;
	background: #151515;
	aspect-ratio: 350/435
}

.pc .pi img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s
}

.pc:hover .pi img {
	transform: scale(1.05)
}

.pc .pi .ov {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 10, 10, .7), transparent 50%);
	opacity: 0;
	transition: opacity .4s;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 18px
}

.pc:hover .pi .ov {
	opacity: 1
}

.vl {
	font-size: .55rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--b);
	background: var(--g);
	padding: 7px 16px;
	font-weight: 500
}

.pc .pb {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--g);
	color: var(--b);
	font-size: .5rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 4px 10px;
	z-index: 2
}

.pc .pf {
	padding: 20px 16px;
	text-align: center;
	border-top: 1px solid rgba(201, 169, 110, .08)
}

.pc .pct {
	font-size: .55rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--g);
	margin-bottom: 6px
}

.pc .pn {
	font-family: 'Playfair Display', serif;
	font-size: .95rem;
	font-weight: 400;
	margin-bottom: 10px
}

.pc .pp {
	font-size: .9rem;
	font-weight: 300;
	color: var(--gl)
}

.pc .ps {
	margin-top: 8px;
	font-size: .6rem;
	color: var(--gr);
	font-weight: 300;
	letter-spacing: 1px
}

.mb {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .85);
	backdrop-filter: blur(8px);
	z-index: 9999;
	align-items: center;
	justify-content: center
}

.mb.open {
	display: flex
}

.md {
	background: var(--d);
	max-width: 860px;
	width: 92%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	border: 1px solid rgba(201, 169, 110, .12);
	animation: ms .4s ease
}

@keyframes ms {
	from {
		opacity: 0;
		transform: translateY(25px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.mx {
	position: absolute;
	top: 12px;
	right: 12px;
	background: none;
	border: none;
	color: var(--grl);
	font-size: 1.6rem;
	cursor: pointer;
	z-index: 10;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color .3s, transform .3s
}

.mx:hover {
	color: var(--g);
	transform: rotate(90deg)
}

.mgr {
	display: grid;
	grid-template-columns: 1fr 1fr
}

.mim {
	background: #111
}

.mim img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 380px
}

.mcn {
	padding: 45px 35px;
	display: flex;
	flex-direction: column;
	justify-content: center
}

.mcn .mct {
	font-size: .55rem;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--g);
	margin-bottom: 8px
}

.mcn h2 {
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	font-weight: 400;
	margin-bottom: 4px
}

.mcn .msb {
	font-family: 'Cormorant Garamond', serif;
	font-size: .9rem;
	font-style: italic;
	color: var(--gl);
	margin-bottom: 12px
}

.mcn .mdv {
	width: 35px;
	height: 1px;
	background: var(--g);
	margin: 12px 0
}

.mcn .mds {
	font-size: .78rem;
	color: var(--grl);
	line-height: 1.8;
	font-weight: 300;
	margin-bottom: 18px
}

.mcn .mpr {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	color: var(--g);
	margin-bottom: 4px
}

.mcn .msz {
	font-size: .65rem;
	color: var(--gr);
	margin-bottom: 22px
}

.cta {
	background: rgba(201, 169, 110, .07);
	border: 1px solid rgba(201, 169, 110, .18);
	padding: 22px;
	text-align: center
}

.cta .ci {
	font-size: 1.3rem;
	color: var(--g);
	margin-bottom: 8px
}

.cta h4 {
	font-family: 'Playfair Display', serif;
	font-size: .95rem;
	font-weight: 400;
	margin-bottom: 6px
}

.cta p {
	font-size: .72rem;
	color: var(--grl);
	line-height: 1.7;
	font-weight: 300
}

.cta .sn {
	margin-top: 10px;
	font-size: .6rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--g)
}

.lf {
	padding: 0
}

.lfg {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	min-height: 450px
}

.lfi {
	position: relative;
	overflow: hidden;
	min-height: 450px
}

.lfi img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.45);
	transition: transform .7s, filter .7s
}

.lfi:hover img {
	transform: scale(1.04);
	filter: brightness(.6)
}

.lfi .lo {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 35px;
	background: linear-gradient(to top, rgba(10, 10, 10, .9), transparent)
}

.lfi .lo h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 6px
}

.lfi .lo p {
	font-size: .72rem;
	color: var(--grl);
	font-weight: 300;
	line-height: 1.6
}

.crf {
	background: var(--ch);
	text-align: center;
	position: relative
}

.crf::before,
.crf::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201, 169, 110, .2), transparent)
}

.crf::before {
	top: 0
}

.crf::after {
	bottom: 0
}

.crg {
	max-width: 950px;
	margin: 0 auto;
	padding: 0 50px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 35px
}

.cri {
	text-align: center
}

.cri .nm {
	font-family: 'Playfair Display', serif;
	font-size: 2.8rem;
	color: var(--g);
	font-weight: 400;
	line-height: 1;
	margin-bottom: 8px
}

.cri h4 {
	font-size: .65rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 6px
}

.cri p {
	font-size: .72rem;
	color: var(--gr);
	font-weight: 300;
	line-height: 1.5
}

.ins {
	position: relative;
	padding: 90px 0
}

.ins::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201, 169, 110, .12), transparent)
}

.ins:nth-child(odd) {
	background: var(--d)
}

.ins:nth-child(even) {
	background: var(--b)
}

.inc {
	max-width: 750px;
	margin: 0 auto;
	padding: 0 50px
}

.inc .ol {
	font-size: .6rem;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--g);
	margin-bottom: 12px;
	text-align: center
}

.inc h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 12px
}

.inc .idv {
	width: 45px;
	height: 1px;
	background: var(--g);
	margin: 0 auto 25px
}

.inc p {
	font-size: .82rem;
	color: var(--grl);
	line-height: 1.9;
	font-weight: 300;
	margin-bottom: 12px
}

.inc h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	font-weight: 400;
	color: var(--gl);
	margin: 22px 0 10px
}

.inc ul {
	list-style: none
}

.inc li {
	font-size: .82rem;
	color: var(--grl);
	line-height: 1.9;
	font-weight: 300;
	margin-bottom: 6px
}

.inc li::before {
	content: '✦ ';
	color: var(--g);
	font-size: .55rem;
	margin-right: 6px
}

footer {
	background: var(--b);
	border-top: 1px solid rgba(201, 169, 110, .12)
}

.ftm {
	max-width: 1200px;
	margin: 0 auto;
	padding: 70px 50px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 50px
}

.ftb .ftl {
	height: 32px;
	filter: brightness(0) invert(1);
	margin-bottom: 18px
}

.ftb p {
	font-size: .78rem;
	color: var(--gr);
	line-height: 1.8;
	font-weight: 300;
	max-width: 280px
}

.ftc h4 {
	font-size: .6rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--g);
	font-weight: 500;
	margin-bottom: 18px
}

.ftc ul {
	list-style: none
}

.ftc li {
	margin-bottom: 8px
}

.ftc a {
	color: var(--gr);
	text-decoration: none;
	font-size: .78rem;
	font-weight: 300;
	transition: color .3s
}

.ftc a:hover {
	color: var(--g)
}

.fbt {
	border-top: 1px solid rgba(255, 255, 255, .04);
	padding: 22px 50px;
	text-align: center
}

.fbt p {
	font-size: .65rem;
	color: var(--gr);
	font-weight: 300;
	letter-spacing: 2px
}

.rv {
	opacity: 0;
	transform: translateY(25px);
	transition: opacity .7s, transform .7s
}

.rv.v {
	opacity: 1;
	transform: translateY(0)
}

@media(max-width:1100px) {
	.pg {
		grid-template-columns: repeat(3, 1fr)
	}
}

@media(max-width:1024px) {
	nav {
		padding: 14px 25px
	}
	
	nav.s {
		padding: 10px 25px
	}
	
	.nl {
		display: none
	}
	
	.mbtn {
		display: flex
	}
	
	.phg,
	.sgg {
		grid-template-columns: 1fr;
		gap: 35px;
		padding: 0 25px
	}
	
	.phi img {
		height: 380px
	}
	
	.pg {
		grid-template-columns: repeat(2, 1fr);
		padding: 0 25px
	}
	
	.lfg {
		grid-template-columns: 1fr
	}
	
	.lfi {
		min-height: 320px
	}
	
	.crg {
		grid-template-columns: repeat(2, 1fr)
	}
	
	.ftm {
		grid-template-columns: 1fr 1fr
	}
	
	section {
		padding: 75px 0
	}
	
	.mgr {
		grid-template-columns: 1fr
	}
	
	.mim img {
		min-height: 240px;
		max-height: 300px
	}
	
	.mcn {
		padding: 25px 20px
	}
}

@media(max-width:768px) {
	.pg {
		gap: 12px;
		padding: 0 18px
	}
	
	.pc .pf {
		padding: 14px 10px
	}
	
	.pc .pn {
		font-size: .85rem
	}
	
	.sh h2 {
		font-size: 1.7rem
	}
	
	.sh {
		margin-bottom: 45px
	}
	
	.pht h2,
	.sgt h2 {
		font-size: 1.8rem
	}
	
	.ftm {
		grid-template-columns: 1fr;
		gap: 35px;
		padding: 50px 25px
	}
	
	.crg {
		gap: 25px;
		padding: 0 25px
	}
	
	.feat {
		gap: 25px
	}
	
	.ch h3::before,
	.ch h3::after {
		width: 25px
	}
}

@media(max-width:480px) {
	.pg {
		gap: 8px;
		padding: 0 12px
	}
	
	.pc .pf {
		padding: 10px 6px
	}
	
	.pc .pn {
		font-size: .75rem
	}
	
	.pc .pp {
		font-size: .8rem
	}
	
	nav {
		padding: 10px 15px
	}
	
	.inc {
		padding: 0 18px
	}
	
	.md {
		width: 96%
	}
	
	.mcn {
		padding: 20px 15px
	}
}