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

body {
	font-family: sans-serif;
	color: #2a2a2a;
}

.site-header {
	border-bottom: 1px solid #e6e6e6;
	background: #fff;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 14px 20px;
}

.brand__logo {
	display: block;
	height: 60px;
	width: auto;
}

.site-nav__list {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 50px;
	margin: 0;
	padding: 0;
}

.site-nav__link {
	text-decoration: none;
	color: #444;
	font-weight: 550;
	font-size: 1.3rem;

	transition: color 0.3s ease;
}

.site-nav__link:hover {
	color: #777;
}

/* Header inner (so we can control layout without affecting other .container uses) */
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

/* Logos: default desktop */
.brand__logo--icon {
	display: none;
}

/* Hamburger button (hidden on desktop) */
.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid #e6e6e6;
	background: #fff;
	border-radius: 10px;
	cursor: pointer;

	align-items: center;
	justify-content: center;
	gap: 6px;
	flex-direction: column;
}

.nav-toggle__bar {
	width: 18px;
	height: 2px;
	background: #444;
	display: block;
}

/* Mobile behavior */
@media (max-width: 640px) {
	/* Swap logo */
	.brand__logo--full {
		display: none;
	}
	.brand__logo--icon {
		display: block;
		height: 44px;
		width: auto;
	}

	/* Show hamburger */
	.nav-toggle {
		display: inline-flex;
	}

	/* Turn nav into dropdown */
	.site-header__inner {
		flex-wrap: wrap; /* allows nav to drop below */
		position: relative;
	}

	.brand,
	.nav-toggle {
		position: relative;
		top: 12px;
	}

	.site-nav {
		width: 100%;
		overflow: hidden;
		max-height: 0;
		opacity: 0;
		transform: translateY(-6px);
		transition:
			max-height 0.28s ease,
			opacity 0.22s ease,
			transform 0.22s ease;
		border-top: 0;
		padding-top: 0;
		margin-top: 0;
	}

	/* Open state (JS toggles this class) */
	.site-header.is-nav-open .site-nav {
		max-height: 260px; /* enough for 3 links */
		opacity: 1;
		transform: translateY(0);
		padding-top: 12px;
	}

	/* Stack links vertically on mobile */
	.site-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.site-nav__link {
		font-size: 1.1rem;
		padding: 10px 4px;
		width: 100%;
	}
}

/* HERO */
.hero {
	padding: 0;
	background: linear-gradient(135deg, #a7a7a7 0%, #e9e9e9 40%, #ffffff 100%);
}

.hero__inner {
	min-height: 520px;
	padding: 100px 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 60px;
}

.hero__media {
	display: flex;
	justify-content: center;
}

.hero__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.hero-carousel {
	position: relative;
	width: min(640px, 100%);
}

.hero-carousel__viewport {
	background: #fff;
	padding: 40px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	overflow: hidden;
}

.hero-carousel__track {
	display: flex;
	transition: transform 0.35s ease;
	will-change: transform;
}

.hero-carousel__slide {
	flex: 0 0 100%;
	height: 420px; /* adjust to match your hero image presence */
}

/* arrows */
.hero-carousel__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 999px;
	border: 1px solid #e6e6e6;
	background: rgba(255, 255, 255, 0.85);
	cursor: pointer;
	color: #444;
	display: grid;
	place-items: center;
	font-size: 22px;
}

.hero-carousel__btn--prev {
	left: 10px;
}

.hero-carousel__btn--next {
	right: 10px;
}

.hero-carousel__btn:hover {
	background: #fff;
}

/* dots */
.hero-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 14px;
}

.hero-carousel__dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	border: 0;
	background: #cfcfcf;
	cursor: pointer;
}

.hero-carousel__dot.is-active {
	background: #b67c64;
}

/* mobile tweaks */
@media (max-width: 900px) {
	.hero-carousel__slide {
		height: 360px;
	}
}

.hero__title {
	margin: 0 0 24px;
	font-weight: 300;
	font-size: 64px;
	line-height: 1.4;
	color: #2a2a2a;
}

.hero__text {
	margin: 0 0 12px;

	font-size: 16px;
	line-height: 1.9;
	color: #6a6a6a;
}

.hero__cta {
	display: inline-block;
	margin-top: 26px;
	padding: 14px 28px;
	background-color: #b67c64; /* adjust to match your exact brown */
	color: #fff;
	text-decoration: none;

	font-weight: 700;
	letter-spacing: 0.18em;
	font-size: 12px;
	transition: background-color 0.3s ease;
}

.hero__cta:hover {
	background-color: #be6038;
}

/* Basic responsive fallback (minimal, not a full “mobile pass” yet) */
@media (max-width: 900px) {
	.hero {
		background: linear-gradient(135deg, #a7a7a7 0%, #e9e9e9 20%, #ffffff 100%);
	}

	.hero__inner {
		grid-template-columns: 1fr;
		padding: 36px 20px;
		gap: 28px;
	}

	.hero__media {
		grid-row: 2;
	}

	.hero__content {
		grid-row: 1;
		text-align: center;
	}
}

@media (max-width: 470px) {
	.hero__title {
		font-size: 48px;
	}
}

/* BRAND INTRO */

.brand-intro__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	min-height: 520px;
}

.brand-intro__content {
	padding: 80px;
}

.brand-intro__title {
	margin-bottom: 24px;

	font-weight: 300;
	font-size: 40px;
	line-height: 1.3;
	color: #2a2a2a;
}

.brand-intro__text {
	margin-bottom: 18px;
	max-width: 520px;

	font-size: 16px;
	line-height: 1.9;
	color: #6a6a6a;
}

.brand-intro__media {
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-intro__media img {
	width: min(450px, 90%);
	height: auto;
}

@media (max-width: 900px) {
	.brand-intro__inner {
		grid-template-columns: 1fr;
	}

	.brand-intro__content {
		text-align: center;
	}

	.brand-intro__text {
		max-width: 100%;
	}
}

@media (max-width: 470px) {
	.brand-intro__content {
		padding: 10px;
	}

	.brand-intro__media {
		max-width: 100%;
	}

	.brand-intro__media img {
		width: 250px;
	}
}

/* FEATURED (3 tiles) */
.featured {
	background: linear-gradient(-45deg, #a7a7a7 0%, #e9e9e9 10%, #ffffff 100%);
	padding: 70px 0;
}

.featured__inner {
	display: block; /* override .container flex */
}

.featured__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 28px;
}

/* shared card base */
.featured-card {
	position: relative;
	min-height: 260px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}

.featured-card__link {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
	position: relative;
}

.featured-card__overlay {
	position: absolute;
	inset: 0;
	opacity: 0.65;
}

.featured-card__content {
	position: relative;
	z-index: 1;
	padding: 38px 44px;
}

.featured-card__title {
	margin: 0 0 14px;
	font-size: 22px;
	letter-spacing: 0.06em;
	font-weight: 700;
}

.featured-card__subtitle {
	margin: 0 0 18px;
	font-size: 13px;
	line-height: 1.7;
	opacity: 0.9;
	max-width: 320px;
}

.featured-card__cta {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.22em;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 6px;
}

/* card variants + backgrounds */
.featured-card--dark {
	background-image: url("/assets/featured_img1.png");
}

.featured-card--dark .featured-card__overlay {
	background: #0e1427;
}

.featured-card--dark .featured-card__content {
	color: #ffffff;
}

.featured-card--dark .featured-card__cta {
	color: #b67c64;
}

.featured-card--light {
	background-image: url("/assets/featured_img2.jpg");
}

.featured-card--light .featured-card__overlay {
	background: #f6efe6;
}

.featured-card--light .featured-card__content {
	color: #2a2a2a;
}

.featured-card--light .featured-card__cta {
	color: #b67c64;
}

/* wide card */
.featured-wide {
	display: grid;
	position: relative;
	min-height: 310px;
	overflow: hidden;
	background-image: url("/assets/wide_image.png");
	background-size: cover;
	background-position: center;
}

.featured-wide__link {
	display: grid;
	position: relative;
	grid-template-columns: 1fr auto;
	align-items: start;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.featured-wide__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, #f6efe6c7 50%, transparent 100%);
}

.featured-wide__content,
.featured-wide__action {
	position: relative;
	z-index: 1;
}

.featured-wide__content {
	padding: 46px 54px;
}

.featured-wide__line {
	display: block;
	width: 60px;
	height: 2px;
	background: #b67c64;
	margin-bottom: 18px;
}

.featured-wide__title {
	margin: 0;
	font-size: 28px;
	letter-spacing: 0.06em;
	font-weight: 700;
	color: #2a2a2a;
}

.featured-wide__action {
	padding: 38px 54px;
}

.featured-wide__btn {
	display: inline-block;
	padding: 14px 28px;
	background: #b67c64;
	color: #ffffff;

	font-weight: 700;
	letter-spacing: 0.18em;
	font-size: 12px;
}

/* hover polish */
.featured-card__link:hover .featured-card__overlay {
	opacity: 0.72;
}

.featured-wide__link:hover .featured-wide__btn {
	background: #be6038;
}

/* minimal responsive fallback */
@media (max-width: 900px) {
	.featured__grid {
		grid-template-columns: 1fr;
	}

	.featured-wide__link {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.featured-wide__action {
		padding-top: 0;
	}
}

/* PRODUCTS GRID */
.products {
	background: #ffffff;
	padding: 90px 0 110px;
}

.products__inner {
	display: block; /* override .container flex */
}

.products__header {
	text-align: center;
	margin-bottom: 52px;
}

.products__kicker {
	font-size: 11px;
	letter-spacing: 0.35em;
	font-weight: 700;
	color: #b67c64;
	margin-bottom: 10px;
}

.products__title {
	font-size: 46px;
	font-weight: 300;
	color: #2a2a2a;
}

.products__title span {
	text-decoration: underline;
	text-underline-offset: 10px;
}

.products__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	justify-items: center;
}

.products__item {
	display: block;
	width: 100%;
	max-width: 280px; /* matches your screenshot sizing */
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	transition: transform 0.3s ease-in-out;
}

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

.products__item img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
}

/* minimal responsive fallback */
@media (max-width: 900px) {
	.products__grid {
		grid-template-columns: 1fr 1fr;
		gap: 26px;
	}

	.products__title {
		font-size: 34px;
	}

	.products__item {
		max-width: 360px;
	}

	.products__item img {
		height: 350px;
	}
}

@media (max-width: 470px) {
	.products__grid {
		grid-template-columns: 1fr;
	}
}

/* FOOTER */
.site-footer {
	background: #626262;
	padding: 70px 0 90px;
}

.site-footer__wrap {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-card {
	position: relative;
	background: #ffffff;
	padding: 60px 70px;
}

.footer-card__inner {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 60px;
	align-items: start;
}

.footer-card__tagline {
	font-weight: 300;
	font-size: 22px;
	line-height: 1.7;
	color: #6a6a6a;
	max-width: 520px;
}

.footer-card__cols {
	display: grid;
	gap: 28px;
}

.footer-card__title {
	font-size: 11px;
	letter-spacing: 0.22em;
	font-weight: 700;
	color: #2a2a2a;
	margin-bottom: 12px;
}

.footer-card__link {
	display: inline-block;

	font-size: 12px;
	color: #b67c64;
	text-decoration: underline;
	text-underline-offset: 5px;
	margin-bottom: 10px;
}

.footer-card__text {
	font-size: 12px;
	color: #6a6a6a;
	line-height: 1.8;
}

.footer-card__cta {
	position: absolute;
	right: 70px;
	bottom: -18px; /* hangs slightly outside like screenshot */
	display: inline-block;
	padding: 14px 26px;
	background: #b67c64;
	color: #ffffff;
	text-decoration: none;

	font-weight: 700;
	letter-spacing: 0.18em;
	font-size: 12px;
}

.footer-card__cta:hover {
	background: #be6038;
}

/* socials */
.footer-social {
	margin-top: 60px;
	display: flex;
	justify-content: center;
	gap: 16px;
}

.footer-social__item {
	width: 40px;
	height: 40px;
	background: #b67c64;
	color: #ffffff;
	text-decoration: none;

	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.footer-social__item:hover {
	background: #be6038;
}

/* minimal responsive fallback */
@media (max-width: 900px) {
	.footer-card {
		padding: 40px 26px;
	}

	.footer-card__inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.footer-card__cta {
		position: static;
		margin-top: 18px;
	}
}

/* PAGE HERO (simple title section) */
.page-hero {
	background: #f6efe6; /* warm light tone like screenshot */
	padding: 45px 20px;
	text-align: center;
}

.page-hero__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.page-hero__kicker {
	margin-bottom: 12px;

	font-size: 11px;
	letter-spacing: 0.35em;
	font-weight: 700;
	color: #b67c64;
}

.page-hero__title {
	margin: 0;

	font-weight: 300;
	font-size: 56px;
	color: #2a2a2a;
}

/* minimal responsive adjustment */
@media (max-width: 900px) {
	.page-hero {
		padding: 70px 20px 80px;
	}

	.page-hero__title {
		font-size: 38px;
	}
}

/* SHOP CATEGORY (Events block) */
.shop-category {
	background: #ffffff;
	padding: 70px 0;
	position: relative;
}

.shop-category__inner {
	display: block;
}

.shop-category__banner img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 14px;
	display: block;
}

.shop-category__title {
	margin: 0;

	font-weight: 600;
	font-size: 4rem;
	color: #2a2a2a;
}

.shop-category__block {
	margin-top: 26px;
	padding: 26px 30px 34px;
	border: 1px solid #f0f0f0;
	border-radius: 18px;
	background: #ffffff;
}

.shop-category__sub {
	margin: 0;

	font-weight: 500;
	font-size: 16px;
	color: #3a3a3a;
}

.shop-category__rule {
	display: block;
	height: 1px;
	margin: 16px 0 22px;
	background: linear-gradient(90deg, #b67c64 0%, rgba(182, 124, 100, 0.15) 60%, transparent 100%);
}

/* PRODUCTS GRID (shop) */
.shop-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.shop-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	height: 275px;
	color: inherit;
	background: #ffffff;
	border: 1px solid #f0f0f0;
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease;
}

.shop-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 26px rgba(0, 0, 0, 0.1);
}

.shop-card__media {
	border-radius: 12px;
	background: #ffffff;
	display: grid;
	height: 200px;
	place-items: center;
	overflow: hidden;
}

.shop-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.shop-card__text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.shop-card__name {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #2a2a2a;
	text-align: center;
	line-height: 1.4;
}

/* Responsive */
@media (max-width: 1000px) {
	.shop-category__header {
		grid-template-columns: 1fr;
	}

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

	.shop-card {
		height: 300px;
	}

	.shop-card__media {
		height: 250px;
	}
}

@media (max-width: 640px) {
	.shop-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 470px) {
	.shop-category__title {
		font-size: 2rem;
	}

	.shop-grid {
		grid-template-columns: 1fr;
	}
}

.custom-shape-divider-bottom-1768843414 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	transform: rotate(180deg);
}

.custom-shape-divider-bottom-1768843414 svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 59px;
}

.custom-shape-divider-bottom-1768843414 .shape-fill {
	fill: #e8e8e8;
}

/* SHOP CATEGORY ALT (background transition / wave) */
.shop-category--alt {
	position: relative;
	background: #e8e8e8;
	padding: 110px 0 90px;
	overflow: hidden;
}

/* reverse header layout (title left, image right) */
.shop-category__header--reverse {
	grid-template-columns: 1fr 320px;
}

.shop-category__header--reverse .shop-category__banner {
	order: 2;
}

.shop-category__header--reverse .shop-category__heading {
	order: 1;
	text-align: center; /* matches your screenshot */
}

/* tighter, centered grid (more “gallery” feel) */
.shop-grid--center {
	max-width: 860px;
	margin: 0 auto;
}

/* responsive */
@media (max-width: 1000px) {
	.shop-category--alt {
		padding: 90px 0 70px;
	}

	.shop-category--alt::before {
		height: 110px;
	}

	.shop-category__header--reverse {
		grid-template-columns: 1fr;
	}

	.shop-grid--center {
		max-width: none;
	}
}

/* CONTACT HERO */
.contact-hero {
	background: #626262;
	color: #ffffff;
	padding: 90px 0 0;
}

.contact-hero__inner {
	text-align: center;
	padding-bottom: 110px;
}

.contact-hero__kicker {
	font-size: 11px;
	letter-spacing: 0.35em;
	font-weight: 700;
	color: #b67c64;
	margin-bottom: 18px;
}

.contact-hero__title {
	margin: 0 0 26px;

	font-weight: 300;
	font-size: 78px;
	line-height: 1.05;
}

.contact-hero__lead {
	margin: 0 auto 14px;
	max-width: 860px;

	font-size: 16px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.85);
}

.contact-hero__cta {
	display: inline-block;
	margin-top: 26px;
	padding: 14px 30px;
	background: #b67c64;
	color: #ffffff;
	text-decoration: none;

	font-weight: 700;
	letter-spacing: 0.18em;
	font-size: 12px;
}

.contact-hero__cta:hover {
	background: #be6038;
}

/* CONTACT STRIP */
.contact-strip {
	background: #626262;
}

.contact-strip__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	align-items: center;
	padding: 60px 20px 70px;
	background-color: #ffffff;
}

.contact-strip__item {
	text-align: center;
}

.contact-strip__icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 18px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	color: #b67c64;
	font-size: 44px;
}

.contact-strip__label {
	margin: 0 0 12px;

	font-size: 11px;
	letter-spacing: 0.22em;
	font-weight: 700;
	color: #bdbdbd;
}

.contact-strip__value {
	margin: 0;
	font-size: 13px;
	letter-spacing: 0.12em;
	font-weight: 800;
	color: #2a2a2a;
	text-decoration: none;
}

/* responsive */
@media (max-width: 900px) {
	.contact-hero__title {
		font-size: 46px;
	}

	.contact-hero__inner {
		padding-bottom: 70px;
	}
}

@media (max-width: 470px) {
	.contact-strip__inner {
		grid-template-columns: 1fr;
		padding: 20px;
	}
}

/* FAQ (Accordion) */
.faq {
	background: #ffffff;
	padding: 90px 0;
}

.faq__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: start;
}

.faq__kicker {
	font-size: 11px;
	letter-spacing: 0.35em;
	font-weight: 700;
	color: #b67c64;
	margin-bottom: 16px;
}

.faq__title {
	margin: 0 0 26px;

	font-weight: 300;
	font-size: 54px;
	color: #2a2a2a;
}

.faq__text {
	margin: 0 0 18px;
	max-width: 520px;

	font-size: 16px;
	line-height: 2;
	color: #6a6a6a;
}

.faq__list {
	display: grid;
	gap: 22px;
}

@media (max-width: 900px) {
	.faq__intro {
		text-align: center;
	}

	.faq__text {
		max-width: 100%;
	}
}

/* details reset */
.faq-item {
	border: 1px dashed #e3e3e3;
	border-radius: 8px;
	background: #ffffff;
	overflow: hidden;
}

.faq-item__summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 22px;
	gap: 18px;
}

.faq-item__summary::-webkit-details-marker {
	display: none;
}

.faq-item__q {
	font-size: 12px;
	letter-spacing: 0.14em;
	font-weight: 800;
	color: #5a5a5a;
}

.faq-item__icon {
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: #b67c64;
	position: relative;
	flex: 0 0 18px;
}

/* plus sign */
.faq-item__icon::before,
.faq-item__icon::after {
	content: "";
	position: absolute;
	background: #ffffff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.faq-item__icon::before {
	width: 10px;
	height: 2px;
}

.faq-item__icon::after {
	width: 2px;
	height: 10px;
}

/* open state: show minus */
.faq-item[open] .faq-item__q {
	color: #2a2a2a;
}

.faq-item[open] .faq-item__icon {
	background: #e36b4f; /* slightly brighter like screenshot */
}

.faq-item[open] .faq-item__icon::after {
	display: none;
}

.faq-item__body {
	padding: 0 22px 22px;
}

.faq-item__a {
	margin: 0;

	font-size: 14px;
	line-height: 1.9;
	color: #6a6a6a;
	list-style-position: inside;
}

/* responsive */
@media (max-width: 900px) {
	.faq__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.faq__title {
		font-size: 38px;
	}
}

/* CONTACT VALUES (4 icons row) */
.contact-values {
	background: #ffffff;
	padding: 40px 0 90px;
}

.contact-values__inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 46px;
	align-items: start;
	text-align: center;
}

.contact-values__icon {
	font-size: 78px;
	color: #b67c64;
	margin-bottom: 22px;
	line-height: 1;
}

.contact-values__title {
	margin: 0 0 18px;

	font-size: 11px;
	letter-spacing: 0.22em;
	font-weight: 800;
	color: #bdbdbd;
}

.contact-values__text {
	margin: 0 auto;
	max-width: 220px;

	font-size: 14px;
	line-height: 2;
	color: #6a6a6a;
}

/* responsive */
@media (max-width: 1000px) {
	.contact-values__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px;
	}
}

@media (max-width: 600px) {
	.contact-values__inner {
		grid-template-columns: 1fr;
	}

	.contact-values__icon {
		font-size: 64px;
	}
}

/* CONTACT FORM */
.contact-form {
	background: #ffffff;
	padding: 90px 0 110px;
}

.contact-form__inner {
	text-align: center;
}

.contact-form__line {
	display: block;
	width: 60px;
	height: 2px;
	background: #b67c64;
	margin: 0 auto 24px;
}

.contact-form__title {
	margin: 0 0 46px;

	font-weight: 300;
	font-size: 56px;
	color: #2a2a2a;
}

.contact-form__grid {
	max-width: 980px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px 40px;
	align-items: start;
}

.contact-form__input,
.contact-form__textarea {
	width: 100%;
	border: none;
	background: #f3f3f3;
	padding: 18px 22px;

	font-size: 14px;
	color: #2a2a2a;
	outline: none;
}

.contact-form__textarea {
	grid-column: 1 / -1;
	resize: vertical;
	min-height: 190px;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
	color: #b8b8b8;
}

.contact-form__submit {
	justify-self: end;
	grid-column: 2 / 3;
	padding: 14px 28px;
	background: #b67c64;
	color: #ffffff;
	border: none;
	cursor: pointer;

	font-weight: 800;
	letter-spacing: 0.18em;
	font-size: 12px;
}

.contact-form__submit:hover {
	background: #be6038;
}

/* accessibility helper */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* responsive */
@media (max-width: 900px) {
	.contact-form__title {
		font-size: 38px;
	}

	.contact-form__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.contact-form__submit {
		grid-column: 1 / -1;
		justify-self: end;
	}
}

/* PRODUCT DETAIL */
.product-detail {
	background: #ffffff;
	padding: 70px 0 110px;
}

.product-detail__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 70px;
	align-items: start;
}

.product-detail__title {
	margin: 0 0 28px;

	font-weight: 300;
	font-size: 74px;
	line-height: 1.05;
	color: #2a2a2a;
	letter-spacing: 0.02em;
}

.product-detail__block {
	margin-bottom: 26px;
}

.product-detail__label {
	margin: 0 0 12px;

	font-size: 13px;
	font-weight: 800;
	color: #6a6a6a;
}

.product-detail__text {
	margin: 0 0 12px;

	font-size: 14px;
	line-height: 1.95;
	color: #7a7a7a;
	max-width: 560px;
}

.product-detail__specs {
	display: grid;
	gap: 12px;
	margin-top: 6px;
}

.product-detail__spec {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: baseline;
}

.product-detail__key {
	font-size: 13px;
	font-weight: 800;
	color: #6a6a6a;
}

.product-detail__value {
	font-size: 13px;
	color: #7a7a7a;
	line-height: 1.7;
}

/* Gallery */
.product-gallery__stage {
	position: relative;
	background: #ffffff;
	border-radius: 18px;
	padding: 26px;
	border: 1px solid #f0f0f0;
}

.product-gallery__image {
	width: 100%;
	height: 420px;
	object-fit: contain;
	display: block;
}

.product-gallery__zoom {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid #f0f0f0;
	background: rgba(255, 255, 255, 0.9);
	color: #6a6a6a;
	cursor: pointer;
	display: grid;
	place-items: center;
}

.product-gallery__zoom:hover {
	color: #2a2a2a;
	border-color: #e6e6e6;
}

.product-gallery__thumbs {
	margin-top: 18px;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	padding: 0;
}

.product-gallery__thumbBtn {
	width: 100%;
	height: 100px;
	border-radius: 14px;
	border: 1px solid #f0f0f0;
	background: #ffffff;
	cursor: pointer;
	display: grid;
	place-items: center;
	padding: 10px;
	opacity: 0.65;
	transition:
		opacity 0.18s ease,
		transform 0.18s ease,
		box-shadow 0.18s ease;
}

.product-gallery__thumbBtn img {
	width: 100%;
	height: 80px;
	object-fit: contain;
	display: block;
}

.product-gallery__thumbBtn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
}

.product-gallery__thumbBtn.is-active {
	opacity: 1;
	border-color: rgba(182, 124, 100, 0.55);
	box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 900px) {
	.product-detail__inner {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.product-detail__title {
		font-size: 44px;
	}

	.product-gallery__image {
		height: 360px;
	}
}

/* RELATED PRODUCTS (Product detail bottom) */
.related-products {
	background: #ffffff;
	padding: 90px 0 120px;
}

.related-products__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 46px;
}

.related-products__title {
	font-weight: 300;
	font-size: 46px;
	color: #2a2a2a;
}

.related-products__cta {
	padding: 14px 26px;
	background: #b67c64;
	color: #ffffff;
	text-decoration: none;
	font-weight: 800;
	letter-spacing: 0.18em;
	font-size: 12px;
}

.related-products__cta:hover {
	background: #be6038;
}

.related-products__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 36px;
	align-items: start;
}

.related-products__price {
	display: block;
	margin-top: 6px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	color: #e36b4f;
}

/* responsive */
@media (max-width: 1000px) {
	.related-products__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 640px) {
	.related-products__header {
		flex-direction: column;
		gap: 22px;
	}

	.related-products__grid {
		grid-template-columns: 1fr 1fr;
	}

	.related-products__title {
		font-size: 34px;
	}
}

@media (max-width: 470px) {
	.related-products__grid {
		grid-template-columns: 1fr;
	}
}
