:root {
	--black: #050505;
	--white: #ffffff;
	--footer: #eeeeee;
	--text: #151515;
	--muted: #676767;
	--line: #dddddd;
	--gold: #b99656;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Montserrat, Arial, sans-serif;
	background: #ffffff;
	color: var(--text);
	font-size: 14px;
}

a {
	color: inherit;
	text-decoration: none;
}

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 1000;
	color: #151515;
	background: transparent;
	transition: background .35s ease, box-shadow .35s ease, color .35s ease;
}

.site-header.is-scrolled,
.site-header.has-open-mega {
	background: rgba(255,255,255,.92);
	box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.header-bar {
	height: 94px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 17px 28px 0;
	position: relative;
	transition: height .35s ease, padding .35s ease;
}

.site-header.is-scrolled .header-bar {
	height: 74px;
	padding-top: 0;
	align-items: center;
	overflow: hidden;
}

.site-header.is-scrolled .brand-lockup {
	width: 148px;
	min-width: 148px;
}

.site-header.is-scrolled .socials {
	align-self: center;
}

.brand-lockup {
	display: block;
	width: 201px;
	min-width: 201px;
}

.brand-lockup img,
.footer-logos img {
	display: block;
	width: 100%;
	height: auto;
}

.main-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	height: 100%;
	padding-top: 24px;
}

.site-header.is-scrolled .main-nav {
	padding-top: 0;
}

.nav-item {
	display: flex;
	align-items: center;
	height: 100%;
}

.nav-link {
	position: relative;
	padding: 10px 0;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: .075em;
	text-transform: uppercase;
	text-shadow: 0 1px 12px rgba(255,255,255,.55);
}

.nav-link:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .22s ease;
}

.nav-link:hover:after,
.has-mega:hover > .nav-link:after,
.has-mega.is-open > .nav-link:after {
	transform: scaleX(1);
}

.socials {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	min-width: 150px;
	font-size: 15px;
}

.socials a {
	opacity: .85;
	transition: opacity .2s ease;
}

.socials a:hover {
	opacity: 1;
}

.mega-menu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 0 28px 28px;
	color: #111111;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.has-mega:hover .mega-menu,
.has-mega.is-open .mega-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.mega-panel {
	max-width: 1480px;
	margin: 0 auto;
	padding: 34px 42px 38px;
	background: rgba(255,255,255,.98);
	box-shadow: 0 24px 70px rgba(0,0,0,.18);
	border: 1px solid rgba(0,0,0,.08);
}

.mega-section h2 {
	margin: 0 0 24px;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: .02em;
}

.mega-columns {
	display: grid;
	grid-template-columns: 1.05fr 1.1fr 1.2fr 1.25fr 1.35fr;
	gap: 34px;
}

.mega-group h3,
.mega-title {
	margin: 17px 0 7px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e7e2dc;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .02em;
}

.mega-group h3:first-child,
.mega-title:first-child {
	margin-top: 0;
	font-weight: 600;
}

.mega-group a,
.home-links a {
	display: block;
	padding: 4px 0;
	font-size: 14px;
	line-height: 1.38;
	font-weight: 400;
	color: #444444;
	cursor: pointer;
	transition: color .16s ease, transform .16s ease;
}

.mega-group a:hover,
.mega-title:hover,
.home-links a:hover {
	color: #000000;
	transform: translateX(4px);
}

.mega-home {
	margin-top: 30px;
	padding-top: 28px;
	border-top: 1px solid #ded8cf;
}

.home-links {
	display: grid;
	grid-template-columns: repeat(8, auto);
	gap: 18px 34px;
}

.home-links a {
	font-weight: 500;
	color: #222222;
}

.mobile-toggle {
	display: none;
	width: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
}

.mobile-toggle span {
	display: block;
	height: 2px;
	margin: 7px 0;
	background: currentColor;
}

.mobile-panel {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 18px 26px;
	background: #ffffff;
	box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.mobile-panel a,
.mobile-nav-link {
	display: block;
	width: 100%;
	padding: 13px 0;
	border: 0;
	border-bottom: 1px solid rgba(0,0,0,.12);
	background: transparent;
	color: inherit;
	text-align: left;
	text-transform: uppercase;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .04em;
}

.mobile-nav-item {
	border-bottom: 1px solid rgba(0,0,0,.12);
}

.mobile-nav-item .mobile-nav-link {
	position: relative;
	border-bottom: 0;
}

.mobile-nav-link:after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-65%) rotate(45deg);
}

.mobile-nav-item.is-open .mobile-nav-link:after {
	transform: translateY(-25%) rotate(-135deg);
}

.mobile-submenu {
	display: none;
	padding: 8px 0 12px;
}

.mobile-nav-item.is-open .mobile-submenu {
	display: block;
}

.mobile-submenu a {
	padding: 11px 18px;
	border-bottom: 0;
	background: #f4f4f4;
	font-weight: 500;
	letter-spacing: .02em;
}

.mobile-submenu a + a {
	border-top: 1px solid rgba(0,0,0,.08);
}

.mobile-panel.is-open {
	display: block;
}

.hero {
	position: relative;
	height: 100vh;
	min-height: 650px;
	overflow: hidden;
	background: #111111;
}

.hero:before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	z-index: 9;
	height: 245px;
	background: linear-gradient(to bottom, rgba(255,255,255,.88), rgba(255,255,255,.38) 38%, rgba(255,255,255,.08) 70%, rgba(255,255,255,0));
	pointer-events: none;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.4s ease;
}

.hero-slide.is-active {
	opacity: 1;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.035);
	animation: kenburns 21s ease-in-out infinite;
}

.hero-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(255,255,255,.03), rgba(0,0,0,.03) 55%, rgba(0,0,0,.12));
	pointer-events: none;
}

.hero-title {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14.5vh;
	z-index: 15;
	text-align: center;
	color: #ffffff;
	text-shadow: 0 8px 30px rgba(0,0,0,.28);
}

.hero-title h1 {
	margin: 0;
	font-family: 'Great Vibes', cursive;
	font-size: clamp(46px, 6.2vw, 88px);
	font-weight: 400;
	line-height: .86;
	letter-spacing: .035em;
}

.hero-dots {
	position: absolute;
	left: 50%;
	bottom: 8.2vh;
	z-index: 18;
	display: flex;
	gap: 8px;
	transform: translateX(-50%);
}

.hero-dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #ffffff;
	opacity: .9;
	transition: opacity .2s ease, background .2s ease, transform .2s ease;
}

.hero-dots button.active,
.hero-dots button:hover {
	background: #111111;
	opacity: 1;
	transform: scale(1.08);
}

.hero-arrow {
	position: absolute;
	top: 50%;
	z-index: 16;
	width: 34px;
	height: 34px;
	border: 0;
	background: transparent;
	opacity: .85;
	transition: opacity .2s ease, transform .2s ease;
}

.hero-arrow:hover {
	opacity: 1;
	transform: translateY(-50%) scale(1.08);
}

.hero-arrow:before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	border-left: 4px solid #ffffff;
	border-bottom: 4px solid #ffffff;
}

.hero-prev {
	left: 28px;
	transform: translateY(-50%);
}

.hero-prev:before {
	transform: rotate(45deg);
}

.hero-next {
	right: 28px;
	transform: translateY(-50%);
}

.hero-next:before {
	transform: rotate(-135deg);
}

.scroll-cue {
	position: absolute;
	right: 32px;
	bottom: 38px;
	z-index: 20;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	opacity: .56;
	transform: scale(.78);
	transform-origin: right bottom;
	transition: opacity .25s ease, transform .25s ease;
}

.scroll-cue:hover {
	opacity: .9;
	transform: scale(.78) translateY(-4px);
}

.scroll-mouse {
	position: relative;
	display: block;
	width: 34px;
	height: 54px;
	border: 2px solid rgba(255,255,255,.78);
	border-radius: 24px;
	box-shadow: 0 0 18px rgba(255,255,255,.08);
}

.scroll-wheel {
	position: absolute;
	top: 11px;
	left: 50%;
	width: 4px;
	height: 12px;
	border-radius: 6px;
	background: rgba(255,255,255,.9);
	transform: translateX(-50%);
	animation: scrollWheel 3.8s ease-in-out infinite;
}

.scroll-chevrons {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.scroll-chevrons span {
	display: block;
	width: 18px;
	height: 18px;
	margin-top: -8px;
	border-right: 2px solid rgba(255,255,255,.72);
	border-bottom: 2px solid rgba(255,255,255,.72);
	transform: rotate(45deg);
	animation: scrollChevron 3.8s ease-in-out infinite;
}

.scroll-chevrons span:nth-child(2) {
	animation-delay: .28s;
}

.scroll-chevrons span:nth-child(3) {
	animation-delay: .56s;
}

.category-grid {
	background: #ffffff;
}

.category-tile {
	position: relative;
	display: block;
	height: 32.7vw;
	min-height: 330px;
	max-height: 420px;
	overflow: hidden;
	color: #ffffff;
	border: 3px solid #ffffff;
}

.category-tile img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .75s ease;
}

.category-tile:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,.08) 22%, rgba(0,0,0,.2) 54%, rgba(0,0,0,.76));
	opacity: 0;
	transition: opacity .28s ease;
}

.category-tile:hover img {
	transform: scale(1.06);
}

.category-tile:hover:after {
	opacity: 1;
}

.category-tile span {
	position: absolute;
	left: 34px;
	bottom: 55px;
	z-index: 2;
	font-size: 21px;
	line-height: 1.08;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-shadow: 0 2px 12px rgba(0,0,0,.58);
}

.category-tile small {
	position: absolute;
	left: 34px;
	bottom: 33px;
	z-index: 2;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
	text-shadow: 0 2px 10px rgba(0,0,0,.58);
}

.category-tile b {
	position: absolute;
	right: 34px;
	bottom: 38px;
	z-index: 2;
	width: 38px;
	height: 1px;
	background: #ffffff;
	opacity: 0;
	transform: translateX(-10px);
	transition: opacity .25s ease, transform .25s ease;
}

.category-tile b:after {
	content: "";
	position: absolute;
	top: -4px;
	right: 0;
	width: 9px;
	height: 9px;
	border-top: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	transform: rotate(45deg);
}

.category-tile:hover b {
	opacity: 1;
	transform: translateX(0);
}

.promo-banners {
	display: block;
	background: #ffffff;
	border-top: 4px solid #ffffff;
}

.promo-card {
	position: relative;
	display: flex;
	min-height: 260px;
	padding: 54px 60px;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #ffffff 55%, #f2eee8 100%);
	border-top: 1px solid #ded8cf;
	border-right: 1px solid #ded8cf;
	transition: background .25s ease, transform .25s ease;
}

.promo-card.alt {
	background: linear-gradient(135deg, #f2f0ed 0%, #f2f0ed 54%, #ffffff 100%);
}

.promo-card:before {
	content: "";
	position: absolute;
	right: -72px;
	bottom: -72px;
	width: 260px;
	height: 260px;
	border: 1px solid rgba(185,150,86,.45);
	border-radius: 50%;
	transition: transform .45s ease, opacity .35s ease;
}

.promo-card:after {
	content: "";
	position: absolute;
	right: 42px;
	bottom: 42px;
	width: 120px;
	height: 84px;
	background: linear-gradient(135deg, transparent 0 38%, rgba(185,150,86,.36) 38% 41%, transparent 41% 100%), linear-gradient(45deg, transparent 0 45%, rgba(20,20,20,.12) 45% 47%, transparent 47% 100%);
	clip-path: polygon(0 100%, 100% 100%, 100% 0);
	opacity: .75;
	transition: transform .45s ease, opacity .35s ease;
}

.promo-card:hover {
	background: linear-gradient(135deg, #ffffff 0%, #faf8f5 52%, #eee7dd 100%);
}

.promo-card:hover:before {
	transform: scale(1.08);
	opacity: .9;
}

.promo-card:hover:after {
	transform: translate(-8px, -8px);
	opacity: 1;
}

.promo-card small {
	position: relative;
	z-index: 2;
	margin-bottom: 18px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--gold);
}

.promo-card strong {
	position: relative;
	z-index: 2;
	max-width: 540px;
	font-size: 34px;
	font-weight: 400;
	letter-spacing: .01em;
	line-height: 1.15;
}

.promo-card span {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.promo-card span:after {
	content: "";
	display: inline-block;
	width: 38px;
	height: 1px;
	background: currentColor;
	transition: transform .25s ease;
}

.promo-card:hover span:after {
	transform: translateX(7px);
}

.site-footer {
	background: var(--footer);
	color: #111111;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.15fr 1.55fr 1fr 1.2fr;
	gap: 40px;
	align-items: start;
	padding: 58px 38px 50px;
}

.footer-col h3 {
	margin: 0 0 22px;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
}

.footer-col p,
.footer-col a {
	font-size: 13px;
	line-height: 1.65;
	color: #666666;
}

.footer-col a {
	text-decoration: underline;
}

.footer-col:nth-child(2) p,
.footer-col:nth-child(2) a {
	white-space: nowrap;
}

.footer-socials,
.footer-bottom-socials {
	display: flex;
	gap: 9px;
	font-size: 15px;
}

.footer-socials a,
.footer-bottom-socials a {
	color: #111111;
}

.footer-logos {
	display: flex;
	justify-content: flex-end;
}

.footer-logos img {
	max-width: 215px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 15px 26px 18px;
	font-size: 12px;
	color: #555555;
	background: #ffffff;
}

@keyframes kenburns {
	0% {
		transform: scale(1.035) translate3d(0,0,0);
	}
	50% {
		transform: scale(1.09) translate3d(-.85%,.5%,0);
	}
	100% {
		transform: scale(1.035) translate3d(0,0,0);
	}
}

@keyframes scrollWheel {
	0%, 100% {
		opacity: .2;
		transform: translate(-50%,0);
	}
	45% {
		opacity: 1;
		transform: translate(-50%,10px);
	}
}

@keyframes scrollChevron {
	0%, 100% {
		opacity: .12;
		transform: rotate(45deg) translate(0,0);
	}
	45% {
		opacity: .85;
		transform: rotate(45deg) translate(5px,5px);
	}
}

@media (max-width: 1399px) {
	.main-nav {
		gap: 34px;
	}

	.mega-columns {
		gap: 24px;
	}

	.category-tile span {
		font-size: 19px;
	}
}

@media (max-width: 1199px) {
	.brand-lockup {
		width: 170px;
		min-width: 170px;
	}

	.main-nav {
		gap: 22px;
	}

	.nav-link {
		font-size: 12px;
	}

	.socials {
		min-width: 120px;
	}

	.mega-columns {
		grid-template-columns: repeat(3, 1fr);
	}

	.home-links {
		grid-template-columns: repeat(4, auto);
	}
}

@media (max-width: 991px) {
	.main-nav,
	.socials {
		display: none;
	}

	.mobile-toggle {
		display: block;
	}

	.header-bar {
		height: 82px;
		align-items: flex-start;
	}

	.site-header.is-scrolled .header-bar {
		height: 66px;
	}

	.brand-lockup {
		width: 165px;
		min-width: 165px;
	}

	.mega-menu {
		display: none;
	}

	.hero {
		min-height: 560px;
	}

	.hero-title {
		bottom: 16vh;
	}

	.hero-dots {
		bottom: 9.8vh;
	}

	.category-tile {
		height: 56vw;
		min-height: 330px;
	}

	.promo-banners .col-12:nth-child(3) .promo-card {
		background: linear-gradient(135deg, #ffffff 0%, #ffffff 55%, #f2eee8 100%);
	}

	.promo-banners .col-12:nth-child(4) .promo-card {
		background: linear-gradient(135deg, #f2f0ed 0%, #f2f0ed 54%, #ffffff 100%);
	}

	.footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 34px;
	}

	.footer-col:nth-child(2) p,
	.footer-col:nth-child(2) a {
		white-space: normal;
	}

	.footer-logos {
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	.hero-arrow {
		display: none;
	}

	.scroll-cue {
		right: 18px;
		bottom: 24px;
		transform: scale(.66);
	}

	.scroll-cue:hover {
		transform: scale(.66) translateY(-4px);
	}

	.category-tile {
		height: 70vw;
		min-height: 330px;
	}

	.promo-card {
		min-height: 210px;
		padding: 38px 28px;
	}

	.promo-card strong {
		font-size: 30px;
	}

	.footer-main {
		grid-template-columns: 1fr;
		padding: 45px 25px;
	}

	.footer-col:nth-child(2) p,
	.footer-col:nth-child(2) a {
		white-space: normal;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 575px) {
	.header-bar {
		height: 76px;
		padding: 14px 18px 0;
	}

	.site-header.is-scrolled .header-bar {
		height: 62px;
	}

	.brand-lockup {
		width: 145px;
		min-width: 145px;
	}

	.hero {
		min-height: 540px;
	}

	.hero-title h1 {
		font-size: 54px;
	}

	.hero-dots {
		bottom: 11vh;
	}

	.category-tile {
		height: 82vw;
		min-height: 300px;
	}

	.category-tile span {
		left: 24px;
		bottom: 50px;
		font-size: 18px;
	}

	.category-tile small {
		left: 24px;
		bottom: 30px;
	}

	.category-tile b {
		display: none;
	}
}
