/***************************************************************
# Colours
***************************************************************/

:root {
	--castgold: #ba924a;
	--rangedust: #c8b191;
	--primer: #fff9f1;
	--gunpowder: #0c0c0c;
	--grey: #353535;
}


/***************************************************************
# Fonts
***************************************************************/

@font-face {
	font-family: 'great_gusto';
	src: url('../fonts/greatgusto-regular-webfont.woff2') format('woff2'),
		url('../fonts/greatgusto-regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

.text--large {
	font-size: 1.25rem;
}

/***************************************************************
# Tags
***************************************************************/

* {
	scroll-margin-top: 80px;
}

html,
body {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
	background: #141414;
	color: var(--primer);
}

body {
	background-image: url(../assets/wood-bg.jpg);
	background-position: 50% 50%;
	background-size: cover;
	padding-top: 85px;

}

@media(min-width: 32rem) {
	body {
		padding-top: 72px;
	}
}

h1,
h2,
h3,
h4,
h5 {
	color: var(--castgold);
	font-family: 'great_gusto';
	letter-spacing: 0.05em;
	margin: 1em 0 0.5em;
}

h3 {
	color: var(--rangedust);
	font-size: clamp(1.4rem, 4vw, 1.5rem);
}

ul li::marker {
	color: var(--rangedust);
}

mark {
	color: var(--primer);
}

label {
	font-weight: normal;
}

#wrapper {
	position: relative;
	overflow: hidden;
}

hr {
	margin: 3rem 0;
	border-color: var(--rangedust);
}

/***************************************************************
# Sections
***************************************************************/

.section--white {
	color: var(--gunpowder);
	background-image: url(../assets/background-white-3.jpg);
	background-position: 50% 50%;
	background-size: cover;
	position: relative;
}

.section--dark {
	background: var(--gunpowder);
	color: var(--primer);
	position: relative;
}

.section--gold {
	background: var(--castgold);
	color: var(--gunpowder);
	background-image: url(../assets/background-gold-2.jpg);
	background-position: 50% 50%;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.section--gold h2 {
	color: inherit;
}

.section-title {
	margin-bottom: 1em;
}

.section-margin-slim {
	margin-top: clamp(1rem, 5vw, 4rem);
	margin-bottom: clamp(1rem, 5vw, 4rem);
}



/***************************************************************
# Forms / Input
***************************************************************/

button,
.button,
a.button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
	background: var(--castgold);
	padding: 1em 4em;
	max-width: 80%;
	transition: all .1s ease;
}

textarea,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="password"],
select {
	border: none;
	margin: 0;
	background-color: rgba(255, 255, 255, 0.1);
	color: inherit;
	padding: 1.5em 2em;
	font-size: 0.875rem;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	opacity: 1;
}


button:hover,
.button:hover,
a.button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
	cursor: crosshair;
	color: var(--gunpowder);
	background: var(--rangedust);
}

.button:hover,
a.button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
	transform: translateX(0.75em);
}


option {
	color: initial;
	font-family: sans-serif;
}

.button.button--dark {
	background: var(--gunpowder);
	color: var(--primer);
}


.button.button--dark:hover {
	background: var(--primer);
	color: var(--gunpowder);
}

.button.button--small {
	padding: 0.5em 1.5em;
	font-size: 0.75rem;
}


/***************************************************************
# Header
***************************************************************/

#header,
#footer {
	background: var(--gunpowder);
}

#header {
	position: fixed;
	z-index: 20;
	top: 0;
	left: 0;
	width: 100%;
}

.header__row {
	gap: 1.5em;
}

.header__col--logo {
	margin-right: auto;
}

.header__col--button {
	line-height: 0;
}

.header__logo img {
	width: 100%;
}

img.header__logo-full {
	max-width: 18rem;
	display: none;
}

img.header__logo-small {
	max-width: 4rem;
}

@media(min-width: 32rem) {
	img.header__logo-small {
		display: none;
	}

	img.header__logo-full {
		display: block;
	}
}

.header__menu {
	color: var(--castgold);
}

.header__menu a:hover {
	color: var(--primer);
}

.header__menu .menu>.menu-item::after {
	height: 0.1rem;
	top: 90%;
}

.header__menu .sub-menu {
	background: var(--grey);
	color: var(--rangedust);
	border-color: var(--castgold);
}

.header__menu .sub-menu>.menu-item a {
	color: inherit;
}

.header__basket {
	display: flex;
	flex-flow: row;
	gap: .5em;
	align-items: center;
	position: relative;
	transition: all .2s ease;
}

.header__basket:hover {
	transform: scale(1.1);
}

.header__basket:hover svg {
	fill: var(--castgold);
}

.header__basket--filled svg {
	animation-name: swing;
	animation-duration: 6s;
	animation-delay: 4s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	transform-origin: 50% 0%;
}

.header__account {
	line-height: 0;
	display: none;
}

.header__account:hover {
	color: var(--castgold);
}

.header__account svg {
	width: 2em;
	fill: currentColor;
}

@keyframes swing {
	0% {
		transform: rotate(0);
	}

	10% {
		transform: rotate(-20deg);
	}

	20% {
		transform: rotate(20deg);
	}

	30% {
		transform: rotate(0deg);
	}

}


.header__menu .current_page_parent a,
.header__menu .current_page_item a {
	color: #666;
	text-decoration: none !important;
}

.header__menu .current_page_item::after {
	display: none !important;
}

.header__basket svg {
	display: inline-block;
	vertical-align: center;
	fill: var(--primer);
	width: 2em;
	height: auto;
}

.header__basket span {
	background: var(--castgold);
	color: var(--gunpowder);
	border-radius: 50%;
	width: 1.4em;
	height: 1.4em;
	text-align: center;
	line-height: 1.4;
	font-size: 0.7em;
	font-weight: bold;
	position: absolute;
	top: -6px;
	left: 25px;
}

@media(min-width: 48rem) {
	.header__account {
		display: block;
	}
}



/***************************************************************
# Mobile Menu
***************************************************************/


.mobile-menu {
	background: var(--gunpowder);
	color: var(--primer);
	text-align: left;
	padding: 7%;
	padding-bottom: 20vh;
}



.mobile-menu__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1em;
}

.mobile-menu__account {
	line-height: 0;
	display: block;
	text-transform: uppercase;
	font-size: 1rem;
}

.mobile-menu__account svg {
	width: 2em;
	fill: currentColor;
	vertical-align: middle;
	margin-right: .5em;
}


.mobile-menu__button {
	width: 1.25em;
	margin-left: auto;
	border: none;
	font-size: 2rem;
	padding: 0;
	line-height: 0;
}

.mobile-menu__button svg {
	fill: currentColor;
}


.mobile-menu .menu {
	font-weight: initial;
	color: var(--castgold);
}

.mobile-menu .menu-item {
	margin: 0;
	padding: 0;
}

.mobile-menu .menu-item a {
	display: block;
	padding: 1rem 0;
}

.mobile-menu .menu>.menu-item+.menu-item {
	border-top: 1px solid var(--rangedust);
}

.mobile-menu .current-menu-item {
	color: #666;
}

.mobile-menu__inner {
	display: flex;
	flex-flow: column;
	gap: 1em;
	height: 100%;
}

.mobile-menu__contact {
	display: flex;
	flex-flow: column;
	gap: 1em;
	font-size: 1em;
	color: var(--rangedust);
	margin-top: auto;
}

.mobile-menu__contact a {
	display: block;
}

.mobile-menu .search-form .search-field {
	background: none;
	border: 1px solid var(--primer);
	flex: 1;
}

.mobile-menu .search-form .search-submit {
	width: auto;
	padding: 1em 2em;
}

.mobile-menu__legal {
	font-size: 0.875rem;
	color: var(--castgold);
}

.mobile-menu__legal a {
	color: inherit;
}



/* Sub-menu */

.mobile-menu .menu-item-has-children a {
	position: relative;
}

.mobile-menu .menu-item-has-children>a::after {
	display: block;
	content: '▼';
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%) rotate(-90deg);
	transition: transform .4s ease;
}

.mobile-menu .sub-menu {
	display: none;
}

.mobile-menu .sub-menu .menu-item {
	padding-left: 1em;
}

.mobile-menu .sub-menu .menu-item a {
	color: var(--rangedust);
}

.mobile-menu .menu-item-has-children.is-open .sub-menu {
	display: block;
}

.mobile-menu .menu-item-has-children.is-open>a::after {
	transform: translateY(-50%) rotate(0deg);
}




/***************************************************************
# Footer
***************************************************************/

#footer {
	border-top: 6px solid var(--castgold);
}

#footer a {
	color: var(--castgold);
}

.footer__logo {
	width: 100%;
	max-width: 16rem;
	display: block;
	margin: 0 auto;
	/*! background: red; */
	aspect-ratio: 3/2;
	position: relative;
}

img.footer__logo-icon {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 68%;
	transition: all .2s ease;
}

img.footer__logo-text {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	transition: all .2s ease;
}

.footer__logo:hover .footer__logo-icon {
	height: 100%;
}

.footer__logo:hover .footer__logo-text {
	opacity: 0;
	width: 70%;
}

#footer .menu {
	display: flex;
	flex-flow: column;
	gap: .5em;
}


#footer .menu-item:hover a {
	color: var(--primer);
}

#footer .current-menu-item a {
	color: #666 !important;
	text-decoration: none;
}

.footer__col--menu {
	display: none;
}

.footer__col--logo {
	order: -1;
}

@media(min-width: 48rem) {

	.footer__row {
		flex-flow: row;
		justify-content: space-between;
		align-items: end;
	}

	.footer__col {
		flex: 1;
	}

	.footer__col--contact {
		text-align: left;
	}

	.footer__col--logo {
		order: initial;
	}

	.footer__col--menu {
		text-align: right;
		display: block;
	}

}

.credit {
	background: #131313;
	color: var(--primer);
	padding: 1em 0;
	text-align: center;
	font-size: 0.75rem;
}

.credit__row {
	display: flex;
	flex-flow: column;
	gap: 1em;
}

.credit .menu {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-flow: column;
	gap: .5em;
	justify-content: center;
}

.credit .menu a {
	text-decoration: none;
}

.credit .menu a:hover {
	text-decoration: underline;
}

.credit .menu-item {
	margin: 0;
	padding: 0;
}

@media(min-width: 32rem) {

	.credit .menu {
		flex-flow: wrap;
		gap: 1em;
	}

}

@media(min-width: 64rem) {

	.credit__row {
		flex-flow: row;
		justify-content: space-between;
	}

}

/***************************************************************
# WordPress
***************************************************************/

.admin-bar #header {
	top: 32px;
}

.page-template-default {
	text-align: center;
}

@media(min-width: 32rem) {

	.page-template-default {
		text-align: initial;
	}

}

@media screen and (max-width: 782px) {

	.admin-bar #header {
		top: 46px;
	}
}

.block-page-title {
	position: relative;
	font-size: clamp(1.5rem, 5vw, 2rem);
	margin: 0;
	padding: clamp(1rem, 10vw, 5rem);
	background: black;
	text-align: center;
	z-index: 1;
	overflow: hidden;
}

.block-page-title img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	filter: blur(1px);
	opacity: 0.6;
}

#sidebar h3 {
	font-family: inherit;
	letter-spacing: initial;
	font-weight: normal;
	font-size: clamp(1rem, 1.6vw, 1.4rem);
	color: var(--rangedust);
}

/***************************************************************
# Page > Home
***************************************************************/

.home .page-title {
	display: none;
}

.home-about {
	color: var(--gunpowder);
	background-image: url(../assets/background-white-3.jpg);
	background-position: 50% 50%;
	background-size: cover;
	position: relative;
	text-align: center;
}

.home-about h1,
.home-about h2,
.home-about h3,
.home-about h4,
.home-about h5 {
	color: inherit;
}

.home-about .container {
	padding-bottom: 120%;
}

.home-about__image {
	position: absolute;
	bottom: 0;
	left: 10%;
	width: 80%;
	transform: translate3d(0, 100px, 0);
}

.home-about__image--desktop {
	display: none;
}

.home-reticle {
	position: absolute;
	z-index: 1;
	opacity: 0.2;
	fill: var(--castgold);
	pointer-events: none;
	right: 80%;
	transform: translate(0%, -37%) rotate(180deg);
	width: 50%;
}

.home-about .button--dark:hover {
	background: var(--rangedust);
}

@media(min-width: 40rem) {

	.home-about {
		text-align: initial;
	}

	.home-about .container {
		padding-bottom: initial;
	}

	.home-about__text {
		max-width: 75%;
	}

	.home-about__image {
		left: 70%;
		width: initial;
		height: 110%;
		transform: translate3d(100px, 0, 0);
	}

	.home-about__image--desktop {
		display: block;
	}

	.home-about__image--mobile {
		display: none;
	}

}

@media(min-width: 64rem) {

	.home-about .container {
		padding-bottom: initial;
	}

	.home-about__text {
		max-width: 50%;
	}

	.home-about__image {
		left: 60%;
		width: initial;
		height: 110%;
	}

}


.sparks {
	position: absolute;
	z-index: 2;
	pointer-events: none;
	width: 10%;
}

.sparks--left {
	left: -4.5%;
	top: -150%;
	transform: rotate(180deg);
}

.sparks--right {
	right: -4.5%;
	top: -30%;
	transform: translateY(50%);
}



/***************************************************************
# Block > Hero
***************************************************************/

.hero {
	position: relative;
	text-align: center;
	z-index: 1;
	padding: clamp(5rem, 8vw, 8rem) 0;
	/*! overflow: hidden; */
	box-shadow: inset 0em 0em 3em rgba(0, 0, 0, 1);
	background: var(--gunpowder);
}

img.hero__logo {
	width: 90%;
	max-width: 64rem;
}

.hero__heading {
	margin: 0;
}

.hero__subheading {
	text-transform: uppercase;
	letter-spacing: 0.6em;
	font-weight: bold;
}

.hero__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.hero__arrow-container {
	display: block;
	position: absolute;
	bottom: 3em;
	left: 50%;
	transform: translateX(-50%);
	width: 2.5rem;
}

.hero__arrow {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	transition: opacity .2s ease;
}

.hero__arrow--white {
	opacity: 1;
}

.hero__arrow--gold {
	opacity: 0;
}

.hero__arrow-container:hover .hero__arrow--white {
	opacity: 0;
}

.hero__arrow-container:hover .hero__arrow--gold {
	opacity: 1;
}

.hero .socials {
	color: var(--primer);
	margin-top: 2rem;
}



/***************************************************************
# Block > Image / Text
***************************************************************/

.block-image-text {
	background-image: url(../assets/background-dark-2.jpg);
	background-position: 50% 50%;
	background-size: cover;
	position: relative;
	text-align: center;
}

.block-image-text .block-featured-products__items {
	margin-top: 4rem;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 1vw;
}

.block-image-text .block-featured-products__items a {
	text-decoration: none;
	display: block;
	transition: all .2s ease;
	position: relative;
}

.block-featured-products__link a:hover {
	transform: translateX(.5em);
}

.block-featured-products__link {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.block-featured-products__link svg {
	position: absolute;
	height: 100%;
	fill: currentColor;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
}

.block-featured-products__link:hover svg {
	fill: var(--primer);
}

.image-text__col:nth-child(2) {
	display: none;
}


.image-text__image {
	display: block;
	position: relative;
	z-index: 1;
	line-height: 0;
}

.image-text__image img {
	aspect-ratio: 1;
	width: 1;
	object-fit: cover;
}

.image-text__image::after {
	content: "";
	display: block;
	background: var(--castgold);
	position: absolute;
	top: 0.75em;
	left: 0.75em;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.image-text__row {
	display: flex;
	flex-flow: column;
	gap: 4rem;
}

.image-text__col {
	flex: 1;
}

@media(min-width: 48rem) {

	.block-image-text {
		text-align: initial;
	}

	.block-image-text .block-featured-products__items {
		margin-top: 4rem;
		grid-template-columns: repeat(6, 1fr);
	}

	.image-text__row {
		flex-flow: row;
		align-items: center;
	}

	.image-text__col:nth-child(2) {
		display: block;
	}

}






/***************************************************************
# Template > Events
***************************************************************/

.page-template-events {
	text-align: center;
}

@media(min-width:32rem) {
	.page-template-events {
		text-align: initial;
	}
}

.events-banner {
	line-height: 0;
}

.events-banner img {
	width: 100%;
	display: block;
	aspect-ratio: 4/1;
	object-fit: cover;
}

hr {
	margin: 0;
}

.events-container {
	display: flex;
	flex-flow: column;
	gap: clamp(1rem, 10vw, 6rem);
	margin-top: 2rem;
	background: var(--gunpowder);
	padding: clamp(1rem, 5vw, 3rem);
	text-align: left;
}

.events-container .section-title {
	margin: 0;
}

.events-item .wp-post-image {
	margin: 0;
}

.events-image {
	line-height: 0;
	position: relative;
	aspect-ratio: 3/2;
	background: black;
	overflow: hidden;
	z-index: 1;
}

.events-image__main {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 1;
}

.events-image__blur {
	z-index: 0;
	position: absolute;
	top: -2%;
	left: -2%;
	width: 104%;
	height: 104%;
	object-fit: cover;
	filter: blur(8px);
	opacity: .5;
	max-width: initial;
}


.events-title {
	margin: 1rem 0;
	font-size: clamp(1.2rem, 4vw, 1.8rem);
}

.events__details {
	margin-top: 1em;
}


.events-footer {
	display: flex;
	flex-flow: column;
	gap: .5rem;
	font-family: 'great_gusto';
	margin: 1rem 0 .5rem;
	font-weight: bold;
	font-size: 0.875rem;
	text-transform: uppercase;
	color: var(--rangedust);
}

.events-footer__divider {
	display: none;
}

.events-footer svg {
	width: 1.6em;
	fill: currentColor;
	vertical-align: bottom;
}

/* Gallery */

.events-gallery__container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: clamp(01rem, 5vw, 1rem);
}

.events-gallery__container img {
	display: block;
	aspect-ratio: 1;
	object-fit: cover;
}

@media(min-width: 32rem) {
	.events-gallery__container {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media(min-width: 48rem) {
	.events-gallery__container {
		grid-template-columns: repeat(4, 1fr);
	}
}


/* Subscribe */

.events-subscribe {
	display: flex;
	justify-content: end;
}

.events-subscribe-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.8);
	visibility: hidden;
	opacity: 0;
	transition: all .4s ease;
	text-align: left;
}

.events-subscribe-modal * {
	margin: 0;
}

.events-subscribe-modal--open {
	visibility: visible;
	opacity: 1;
}

.events-subscribe-modal--open .events-subscribe-modal__inner {
	transform: translate(-50%, -50%);
}


.events-subscribe-modal__inner {
	background: var(--gunpowder);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -40%);
	padding: 4vw;
	border: 1px solid var(--castgold);
	width: 90%;
	max-height: 90%;
	max-width: 48rem;
	overflow: auto;
	transition: all .4s ease;
}

.events-subscribe-modal__header {
	display: flex;
	gap: 1em;
	justify-content: space-between;
	align-items: start;
	margin-bottom: 1em;
}

.events-subscribe-modal__close {
	cursor: pointer;
	transition: all .4s ease;
	line-height: 0;
	position: absolute;
	top: 3%;
	right: 3%;
}

.events-subscribe-modal__close svg {
	fill: currentColor;
	width: 2em;
}

.events-subscribe-modal .nf-form-cont {
	margin-top: 1rem;
}

.nf-form-fields-required {
	display: none;
}


/* Responsive */

@media(min-width: 48rem) {

	.events-banner img {
		aspect-ratio: 8/1;
	}

	.events-item {
		display: flex;
		align-items: center;
		gap: 2rem;
	}

	.events-title {
		margin: 0 0 .25rem;
	}

	.events-container {
		gap: clamp(0.5rem, 5vw, 4rem);
	}

	.events-image {
		width: 30%;
	}

	.events__details {
		flex: 1;
		margin: 0;
	}

	.events-footer {
		display: flex;
		flex-flow: wrap;
		align-items: center;
		gap: .5em;
	}

	.events-footer__end {
		margin-left: auto;
		width: 10em;
	}

	.events-footer__end .button {
		max-width: initial;
	}

	.events-footer__divider {
		display: block;
	}

}



/* Filter */

.event-location-filter {
	margin: 0;
	margin-top: clamp(1rem, 15vw, 4rem);
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-flow: wrap;
	gap: .5em;
	font-size: 0.875rem;
}

.event-location-filter__label {
	margin: 0;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 0.1em;
}

.event-location-filter__item {
	margin: 0;
}

.event-location-filter__item a {
	color: var(--primer);
	border: 1px solid currentColor;
	padding: 0.5em 1em;
	display: block;
	text-decoration: none;
}

.event-location-filter__item a:hover {
	background: var(--primer);
	color: var(--gunpowder);
}

@media(min-width: 32rem) {

	.event-location-filter {
		flex-flow: wrap;
		align-items: center;
		gap: 1em;
	}

}




/* Read more */

.read-more {}

.read-more__button {
	color: var(--castgold);
	font-size: 0.875rem;
	cursor: pointer;
	margin-left: 0.4em;
}

.read-more__content {
	display: none;
}

.read-more.open .read-more__button {
	display: none;
}

.read-more.open .read-more__content {
	display: inline;
}




/***************************************************************
# Template > About
***************************************************************/


/* General */

.page-template-about {
	text-align: center;
}

@media(min-width:32rem) {
	.page-template-about {
		text-align: initial;
	}
}


/* Hero */

.about-hero {
	background: var(--gunpowder);
	color: var(--primer);
	position: relative;
	z-index: 1;
	overflow: hidden;
	text-align: center;
}

.about-hero__logo {
	max-width: 10rem;
}

.about-hero__content {
	max-width: 40rem;
}

.about-hero__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	opacity: 0.6;
	filter: blur(6px);
}

.about-hero__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	opacity: 0.6;
	filter: blur(6px);
}

/* Story */

.about-story {
	text-align: center;
}

.about-story__row {
	display: flex;
	flex-flow: column;
	gap: 1rem;
}

.about-story__image {
	line-height: 0;
}

.about-story__image img {
	aspect-ratio: 1;
	border-radius: 50%;
	object-fit: cover;
	width: 10rem;
	max-width: 80%;
	border: 4px solid var(--castgold);
}

@media(min-width: 56rem) {

	.about-story {
		text-align: initial;
	}

	.about-story__row {
		flex-flow: row-reverse;
		align-items: center;
		gap: clamp(2rem, 5vw, 6rem);
	}

	.about-story__col {
		flex: 1;
	}

	.about-story__image img {
		border-radius: 0;
		border: none;
		width: 100%;
		max-width: 100%;
	}

	.about-story__image::after {
		content: "";
		display: block;
		background: var(--castgold);
		position: absolute;
		top: 0.75em;
		left: 0.75em;
		width: 100%;
		height: 100%;
		z-index: -1;
	}

}


/* Products */

.about-products__text {
	max-width: 48rem;
	margin-bottom: 2em;
}

@media(min-width: 32rem) {

	.about-products__footer {
		display: flex;
		justify-content: end;
	}

}

@media(max-width: 48rem) {

	.about-products .block-icons__item {
		padding: 20% 10%;
	}

}


/* Competiton */

.about-competition__row {
	display: flex;
	flex-flow: column;
	gap: clamp(1rem, 5vw, 4rem);
}

.about-competition__col--image {
	display: none;
}

.about-competition__col--text img {
	display: block;
	margin: 1.5rem auto;
	aspect-ratio: 3/4;
	width: 90%;
	object-fit: cover;
	border-radius: 0.125rem;
}

@media(min-width: 48rem) {

	.about-competition__row {
		flex-flow: row;
		align-items: center;
	}

	.about-competition__col--image {
		width: 43%;
		display: block;
	}

	.about-competition__col--image img {
		aspect-ratio: 3/4;
		object-fit: cover;
		margin: -12rem 0;
	}

	.about-competition__col--text {
		flex: 1;
	}

	.about-competition__col--text img {
		display: none;
	}


}

/* Safety */

.about-safety {
	text-align: center;
}

.about-safety ul {
	list-style-position: inside;
	color: var(--rangedust);
}

/* Team */

.about-team {
	text-align: center;
}

.about-team__row {
	display: flex;
	flex-flow: column;
	gap: 1em;
}

.about-team__image {
	aspect-ratio: 1;
	width: 10rem;
	border-radius: 50%;
	object-fit: cover;
}

@media(min-width: 32rem) {

	.about-hero {
		text-align: left;
	}

	.about-team {
		text-align: left;
	}

	.about-team__row {
		flex-flow: row;
		gap: 2rem;
		align-items: center;
	}

	.about-team__col--text {
		flex: 1;
	}

	.about-team__image {
		width: 16rem;
	}

}


/* Community */

.about-community {
	overflow: hidden;
	padding-bottom: 42%;
}

.about-community__gallery {
	grid-template-columns: repeat(2, 1fr);
	display: grid;
	grid-gap: clamp(0.5rem, 2vw, 1rem);
	margin: 1rem 0;
}

.about-community__gallery img {
	aspect-ratio: 1;
	object-fit: cover;
	width: 100%;
}

.about-community__bottom {
	position: absolute;
	bottom: -49vw;
	left: 5%;
	width: 90%;
	max-width: initial;
}

@media(min-width: 48rem) {

	.about-community {
		padding-bottom: 22rem;
	}

	.about-community__bottom {
		width: 64rem;
		left: calc(50% - 32rem);
		bottom: -38rem;
	}

	.about-community__gallery {
		grid-template-columns: repeat(4, 1fr);
		margin: 2rem 0;
	}

}




/***************************************************************
# Template > Contact
***************************************************************/

.contact-banner {}

.contact-banner__inner {
	position: relative;
	padding: 18% 10%;
	background: black;
	display: block;
	text-align: center;
	z-index: 1;
	text-decoration: none;
}

.contact-banner__heading {
	color: white;
}

.contact-banner__inner img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	opacity: 0.65;
}



/***************************************************************
# Block > Icons
***************************************************************/

.block-icons {
	text-align: center;
	background-color: var(--castgold);
	color: var(--gunpowder);
	background-image: url(../assets/background-gold-2.jpg);
	background-position: 50% 50%;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.block-icons__container {
	display: flex;
	flex-flow: column;
	gap: clamp(1rem, 5vw, 2rem);
	justify-content: center;
	margin-bottom: 2rem;
}

.block-icons__item {
	display: block;
	text-decoration: none;
	flex: 1;
	background-color: var(--gunpowder);
	padding: 15% 5% 4%;
	color: var(--primer);
	position: relative;
	overflow: hidden;
	cursor: crosshair;
	z-index: 1;
}

.block-icons__item::after {
	display: block;
	content: "";
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	z-index: -1;
}

.block-icons__icon {
	border: 3px solid white;
	border-radius: 50%;
	aspect-ratio: 1;
	width: 40%;
	max-width: 8rem;
	position: relative;
	margin: 0 auto clamp(1rem, 3vw, 3rem);
	transition: all .4s ease;
}

.block-icons__icon svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
	height: 60%;
	fill: currentColor;
}

.block-icons__title {
	font-family: 'great_gusto';
	letter-spacing: 0.05em;
	font-size: clamp(1rem, 7vw, 2rem);
	margin: 1rem 0 0;
	font-weight: bold;
}

.block-icons__text {
	margin: 0.5rem auto 0;
	color: var(--castgold);
}

.block-icons__item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
	filter: grayscale(1) blur(0);
	transition: all .4s ease;
	transform: scale(1.05);
}

.block-icons__reticle {
	fill: var(--gunpowder);
	opacity: .1;
	position: absolute;
	top: -10%;
	left: 80%;
	width: 60%;
	transform: translateY(-50%);
}

.block-icons__inner {
	transition: all .4s ease;
}

.block-icons .button {
	margin: 0 auto;
}

/* Hover */

.block-icons__item:hover .block-icons__inner {
	transform: translateY(-15%);
}

.block-icons__item:hover img {
	filter: grayscale(0) blur(4px);
	transform: scale(1);
}

.block-icons__item:hover .block-icons__icon {
	width: 30%;
}




@media(min-width: 48rem) {

	.block-icons__container {
		flex-flow: row;
	}

	.block-icons__item:hover .block-icons__inner {
		transform: translateY(-25%);
	}

}


/***************************************************************
# Block > Socials
***************************************************************/

.socials {
	display: flex;
	flex-flow: row;
	gap: 1em;
	justify-content: center;
}

.socials__item {
	width: 3em;
	height: 3em;
	border: 2px solid currentColor;
	position: relative;
	color: inherit;
	transition: all .4s ease;
}

.socials__item:hover {
	transform: translateY(-10%);
	color: var(--rangedust);
}

.socials svg {
	width: 60%;
	height: 60%;
	fill: currentColor;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/***************************************************************
# Block > Banner
***************************************************************/

.block-banner {
	min-height: 50vh;
}

/***************************************************************
# Block > Featured Products
***************************************************************/

.block-featured-products {
	position: relative;
	z-index: 1;
	background-image: url(../assets/background-dark-2.jpg);
	background-position: 50% 50%;
	background-size: cover;
	text-align: center;
}

.block-featured-products__items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 9vw 3vw;
}

.block-featured-products__item a:hover {
	cursor: crosshair;
}

.block-featured-products__image {
	overflow: hidden;
	display: block;
	line-height: 0;
	background: linear-gradient(135deg, rgb(55, 55, 55) 0%, rgb(111, 111, 111) 50%, rgb(60, 60, 60) 100%);
	padding: 2px;
	transition: all .2s ease;
}

.block-featured-products__image img {
	width: 100%;
}

.block-featured-products__item-title {
	margin: 0.25em 0;
	font-size: clamp(1rem, 4vw, 1.5rem);
}

.block-featured-products__item-price {
	margin: .5em 0;
	font-size: 0.875rem;
}

.block-featured-products__banner img {
	margin: 3rem auto 0;
	max-width: 50rem;
	border: 2px solid #353535;
}

.block-featured-products__image:hover {
	background: linear-gradient(135deg, #ba9231 0%, #ba9231 50%, #ba9231 100%);
}

@media(min-width: 48rem) {

	.block-featured-products {
		text-align: initial;
	}

	.block-featured-products__items {
		grid-template-columns: repeat(4, 1fr);
	}
}




/***************************************************************
# Block > Contact Form
***************************************************************/

.block-contact-form {
	display: flex;
	flex-flow: column;
}

.block-contact-form::after {
	display: none;
	content: "";
	background: var(--castgold);
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	top: 1rem;
	left: 1rem;
}

.block-contact-form__image {
	line-height: 0;
}

.block-contact-form__image img {
	aspect-ratio: 3/1;
	object-fit: cover;
}

.block-contact-form__content {
	background: var(--gunpowder);
	padding: clamp(1rem, 5vw, 2rem);
	color: var(--primer);
}

@media(min-width: 48rem) {

	.block-contact-form {
		flex-flow: row;
	}

	.block-contact-form::after {
		display: block;
	}

	.block-contact-form__image {
		width: 30%;
		position: relative;
	}

	.block-contact-form__image img {
		height: 100%;
		aspect-ratio: initial;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	.block-contact-form__content {
		flex: 1;
	}

}



/* Boxes */

.contact-boxes__container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1em;
}

.contact-boxes__item {
	background: var(--gunpowder);
	padding: clamp(1rem, 5vw, 4rem) clamp(1rem, 5vw, 2rem);
	border-left: 4px solid var(--castgold);
}

.contact-boxes__item:nth-child(3) {
	grid-column: span 2;
}

.contact-boxes__heading {
	color: var(--primer);
	font-size: 0.875rem;
	text-transform: uppercase;
	margin: 0;
}

.contact-boxes__text {
	color: var(--rangedust);
	font-size: 1.25rem;
}

@media(min-width: 56rem) {

	.contact-boxes__container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 1em;
	}

	.contact-boxes__item:nth-child(3) {
		grid-column: initial;
	}

}

.contact-boxes__item {
	flex: 1;
}

/***************************************************************
# Block > Image Banner
***************************************************************/

.block-image-banner {
	background: black;
	text-align: center;
	padding: clamp(4rem, 20vw, 20rem) 0;
}

.block-image-banner__heading {
	font-size: clamp(2rem, 5vw, 3rem);
}

.block-image-banner__text {
	font-size: clamp(1rem, 3vw, 1.7rem);
}

.block-image-banner img {
	opacity: .4;
}


/***************************************************************
# WooCommerce
***************************************************************/

/* Hero */

.shop-hero {
	position: relative;
	aspect-ratio: 4/1;
	background: black;
}

.shop-hero img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media(min-width: 32rem) {
	.shop-hero {
		aspect-ratio: 8/1;
	}
}


/* Other */

.woocommerce-shop .woocommerce-breadcrumb {
	display: none;
}

.woocommerce .woocommerce-breadcrumb {
	margin: 1rem 0 2rem;
}

.woocommerce-page .wc-block-cart__main .wc-block-cart-items td {
	border-top: 1px solid hsla(0, 0%, 93%, .33);
}

.wc-block-cart__submit-button {
	background: var(--castgold);
	color: var(--primary);
	text-decoration: none;
	padding: 1em;
}

.woocommerce div.product form.cart .button {
	padding: 0.5em 1em;
}

.woocommerce-MyAccount-navigation {
	margin-bottom: 2em;
}

.woocommerce-MyAccount-navigation-link a {
	background: var(--castgold);
	color: var(--gunpowder);
}

.woocommerce-MyAccount-navigation-link a:hover {
	background: var(--rangedust);
	color: var(--gunpowder);
}

.woocommerce-MyAccount-navigation-link.is-active a {
	background: var(--grey);
	color: var(--primer);
}


.woocommerce div.product #wc-square-digital-wallet {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
	border-color: var(--castgold);
	box-shadow: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background-color: #222;
	border-color: var(--castgold);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:hover {
	background: var(--rangedust);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:hover a {
	color: var(--gunpowder);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: var(--castgold);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background-color: var(--castgold);
	color: var(--gunpowder);
	border-color: var(--castgold);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: inherit;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-color: var(--castgold);
}


.single-product .woo-wrapper {
	max-width: 72rem;
}

input[type="checkbox"].wc-block-product-filter-checkbox-list__input:checked {
	background: var(--castgold);
}


.above-breadcrumb {
	display: flex;
	flex-flow: wrap;
	gap: 1em;
	justify-content: space-between;
	align-items: center;
}

.back-to-shop {
	display: inline-block;
	text-decoration: none;
	color: var(--castgold);
	text-transform: uppercase;
	font-size: 0.75rem;
	font-weight: bold;
	line-height: 1;
}

.back-to-shop:hover {
	text-decoration: underline;
}

.back-to-shop svg {
	display: inline-block;
	height: 1.2em;
	vertical-align: middle;
	fill: currentColor;
}

.open-filters {
	display: block;
	color: white;
	font-size: 0.875em;
	font-weight: bold;
	display: none;
}

:where(.wc-block-product-filters) .wc-block-product-filters__open-overlay {
	display: none !important;
}

.open-filters:hover {
	cursor: pointer;
}

.open-filters svg {
	fill: currentColor;
	width: 1.2em;
	margin-right: 0.4em;
	vertical-align: middle;
}

.woocommerce-products-header__title {
	text-align: left;
	margin: 0 0 1rem !important;
}


/* Add to cart */

.cart,
.woocommerce-variation-add-to-cart {
	display: flex;
	flex-flow: row;
}

.cart.variations_form {
	display: block;
}

.cart div .quantity,
.woocommerce div.product form.cart div.quantity {
	float: none;
	margin: 0;
	display: block;
}

.woocommerce .quantity .qty {
	border: none;
	border-radius: 0;
	width: 5rem !important;
	line-height: 2;
}

.woocommerce div.product form.cart .button {
	float: none;
}



/* Product image */

.woocommerce-product-gallery__image {
	cursor: crosshair;
}

.woocommerce ul.products li.product a img {
	border: 2px solid #353535;
	border-image: -webkit-linear-gradient(-35deg, #373737, #6f6f6f, #3c3c3c) 20 stretch;
}

.woocommerce ul.products li.product a img:hover {
	border-color: var(--castgold);
	border-image: -webkit-linear-gradient(-45deg, var(--castgold), var(--rangedust)) 20 stretch;
}

/* Product button */
.woocommerce .products ul li,
.woocommerce ul.products li {
	text-align: left;
}

.woocommerce ul.products li.product .button {
	padding: 0.5em 1em;
}

/* Product titles */

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
	font-family: inherit;
	letter-spacing: initial;
	font-weight: normal;
	font-size: clamp(1rem, 3.5vw, 1.125rem);
	text-align: left;
}

.woocommerce .count {
	display: none;
}

/* Product description */

.woocommerce-product-details__short-description {
	margin: 1rem 0 2rem;
}

.product_meta {
	display: flex;
	flex-flow: column;
	gap: .5em;
	font-size: 0.875rem;
	color: #767676;
	margin: 1rem 0;
}


/* Price */

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
	color: var(--primer);
}

/* Variations */

.woocommerce div.product form.cart .variations select {
	background-color: rgba(255, 255, 255, 0.25);
}

/* Cart */

.woocommerce-page .editor-styles-wrapper .wc-block-grid__products .wc-block-grid__product .wc-block-components-product-image img[alt=""],
.woocommerce-page .wc-block-components-product-image img[alt=""] {
	border: none;
}

/* Shop banner */

.shop-banner {
	aspect-ratio: 5/1;
	display: block;
	width: 100%;
	object-fit: cover;
	margin-bottom: 2em;
	cursor: crosshair;
	border: 2px solid #353535;
}

.shop-banner:hover {
	border-color: var(--castgold);
}

/* Widgets */




@media (max-width: 601px) {

	.open-filters {
		display: block;
	}

	.woocommerce :where(.wc-block-product-filters) .wc-block-product-filters__overlay-dialog {
		background-color: var(--gunpowder);
		color: white !important;
	}

	.woocommerce-ordering {
		float: none;
		display: block;
		width: 100%;
	}

	.woocommerce .woocommerce-ordering select {
		padding: 1em;
	}


	.wc-block-product-filters__overlay {
		color: var(--gunpowder);
	}

	.wc-block-product-filters__overlay button {
		width: initial;
		max-width: initial;
		color: white;
	}

	:where(.wc-block-product-filters).is-overlay-opened .wc-block-product-filters__overlay {
		background: none !important;
	}

	:where(.wc-block-product-filters) .wc-block-product-filters__overlay-dialog {
		transform: translate(100vw, 0vh) !important;
	}

	:where(.wc-block-product-filters).is-overlay-opened .wc-block-product-filters__overlay-dialog {
		transform: translate(0vw, 0vh) !important;
	}


}



/* Temp fixes */

.woocommerce-result-count,
.woocommerce-ordering {
	display: none;
}

.xoo-wl-popup {
	color: var(--gunpowder);
}




/***************************************************************
# Posts
***************************************************************/

.post-template-default {
	background: #131313;
}

.post-index-introduction {
	text-align: center;
}

.post-grid .entry-title {
	font-size: clamp(1.4rem, 4vw, 1.6rem);
}

.post-grid__item {
	background: var(--gunpowder);
	border: 0;
}


.single-post__header {
	display: flex;
	flex-flow: column;
	gap: 1em;
	font-size: 0.875rem;
	color: #979797;
}

@media(min-width: 40rem) {

	.single-post__header {
		flex-flow: row;
		align-items: center;
	}

}


/***************************************************************
# BaguetteBox
***************************************************************/

#baguetteBox-overlay {
	backdrop-filter: blur(10px);
}

.baguetteBox-button,
.baguetteBox-button:hover {
	background: none !important;
	color: white;
}

.baguetteBox-button svg * {
	stroke: white;
}


/***************************************************************
# Cookie Concent
***************************************************************/

#cmplz-cookies-overview .cmplz-dropdown,
#cmplz-document .cmplz-dropdown,
.editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown {
	color: var(--gunpowder);
}


/* END */