:root {
	--havlora-ink: #201b16;
	--havlora-muted: #6f665e;
	--havlora-soft: #f7f3ee;
	--havlora-paper: #fffdf9;
	--havlora-line: #e5ded5;
	--havlora-accent: #8b4513;
	--havlora-accent-dark: #5d2f13;
}

.havlora-home {
	background: var(--havlora-paper);
	color: var(--havlora-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.home .site-header,
.home #masthead,
.home .ast-mobile-header-wrap,
.home .ast-primary-header-bar,
.home .main-header-bar-wrap {
	display: none !important;
}

.home .site-footer {
	display: none;
}

.havlora-home h1,
.havlora-home h2,
.havlora-home-header__brand,
.havlora-footer__brand {
	font-family: Georgia, "Times New Roman", serif;
	letter-spacing: 0;
}

.havlora-shell {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.havlora-home-header {
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	color: #fffaf3;
}

.havlora-home-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 88px;
	gap: 26px;
	border-bottom: 1px solid rgba(255, 250, 243, 0.22);
}

.havlora-home-header a {
	color: inherit;
	text-decoration: none;
}

.havlora-home-header__brand {
	font-size: 2.05rem;
	line-height: 1;
}

.havlora-home-header__nav {
	display: inline-flex;
	align-items: center;
	gap: 30px;
}

.havlora-home-header__nav a,
.havlora-home-header__cart {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.havlora-home-header__cart {
	justify-self: end;
}

.havlora-home-header a:hover,
.havlora-home-header a:focus-visible {
	color: #ffffff;
}

.havlora-hero {
	position: relative;
	min-height: clamp(560px, 78vh, 820px);
	display: grid;
	align-items: end;
	background-image: linear-gradient(90deg, rgba(25, 20, 16, 0.66), rgba(25, 20, 16, 0.22) 48%, rgba(25, 20, 16, 0.08)), var(--havlora-hero-image);
	background-position: center;
	background-size: cover;
}

.havlora-hero__inner {
	padding: 132px 0 96px;
	color: #fffaf3;
}

.havlora-kicker {
	margin: 0 0 14px;
	color: currentColor;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.74;
}

.havlora-hero h1 {
	max-width: 760px;
	margin: 0;
	color: inherit;
	font-size: clamp(4.5rem, 10vw, 9rem);
	font-weight: 500;
	line-height: 0.9;
}

.havlora-hero__copy {
	max-width: 580px;
	margin: 26px 0 34px;
	color: rgba(255, 250, 243, 0.86);
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	line-height: 1.7;
}

.havlora-button,
.havlora-text-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	text-decoration: none;
}

.havlora-button {
	padding: 0 28px;
	border: 1px solid var(--havlora-accent);
	background: var(--havlora-accent);
	color: #fffaf3;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.havlora-button:hover,
.havlora-button:focus-visible {
	border-color: var(--havlora-accent-dark);
	background: var(--havlora-accent-dark);
	color: #fffaf3;
	transform: translateY(-1px);
}

.havlora-section {
	padding: clamp(72px, 9vw, 128px) 0;
}

.havlora-section__header {
	max-width: 620px;
	margin-bottom: 34px;
}

.havlora-section__header--split {
	max-width: none;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

.havlora-section h2,
.havlora-story h2,
.havlora-faq h2 {
	margin: 0;
	color: var(--havlora-ink);
	font-size: clamp(2rem, 4vw, 4rem);
	font-weight: 500;
	line-height: 1.04;
}

.havlora-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.havlora-category {
	position: relative;
	min-height: 340px;
	overflow: hidden;
	background: #ddd3c8;
	color: #fff;
	text-decoration: none;
}

.havlora-category::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42));
}

.havlora-category img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.havlora-category span {
	position: absolute;
	z-index: 1;
	left: 24px;
	right: 24px;
	bottom: 24px;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.45rem;
	line-height: 1.1;
}

.havlora-category:hover img,
.havlora-category:focus-visible img {
	transform: scale(1.04);
}

.havlora-products {
	background: var(--havlora-soft);
}

.havlora-text-link {
	color: var(--havlora-accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.havlora-product-shortcode ul.products {
	margin-bottom: 0;
}

.havlora-product-shortcode ul.products li.product {
	background: var(--havlora-paper);
	padding: 14px 14px 18px;
	border: 1px solid rgba(32, 27, 22, 0.08);
}

.havlora-product-shortcode ul.products li.product img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	margin-bottom: 18px;
}

.havlora-product-shortcode .woocommerce-loop-product__title {
	color: var(--havlora-ink);
	font-size: 1rem;
	font-weight: 600;
}

.havlora-product-shortcode .price {
	color: var(--havlora-muted) !important;
}

.havlora-product-shortcode .button {
	border-radius: 0;
	background: var(--havlora-ink) !important;
	color: #fff !important;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.havlora-story {
	padding: clamp(72px, 9vw, 128px) 0;
	background: var(--havlora-paper);
}

.havlora-story__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(36px, 7vw, 96px);
	align-items: center;
}

.havlora-story__image img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.havlora-story__copy {
	max-width: 560px;
}

.havlora-story__copy p:not(.havlora-kicker),
.havlora-faq p,
.havlora-footer p,
.havlora-muted {
	color: var(--havlora-muted);
	font-size: 1rem;
	line-height: 1.8;
}

.havlora-trust {
	padding-top: 0;
}

.havlora-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--havlora-line);
	border-bottom: 1px solid var(--havlora-line);
}

.havlora-trust__grid div {
	min-height: 150px;
	padding: 30px 26px;
	border-right: 1px solid var(--havlora-line);
}

.havlora-trust__grid div:last-child {
	border-right: 0;
}

.havlora-trust strong,
.havlora-trust span {
	display: block;
}

.havlora-trust strong {
	margin-bottom: 10px;
	font-size: 1rem;
}

.havlora-trust span {
	color: var(--havlora-muted);
	font-size: 0.92rem;
	line-height: 1.6;
}

.havlora-faq {
	background: var(--havlora-soft);
}

.havlora-faq__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(32px, 7vw, 92px);
}

.havlora-faq__items {
	display: grid;
	gap: 12px;
}

.havlora-faq details {
	border-bottom: 1px solid var(--havlora-line);
	padding: 0 0 18px;
}

.havlora-faq summary {
	cursor: pointer;
	color: var(--havlora-ink);
	font-size: 1.08rem;
	font-weight: 700;
	list-style-position: outside;
}

.havlora-faq details p {
	margin: 12px 0 0;
}

.havlora-footer {
	padding: 72px 0 28px;
	background: #17130f;
	color: rgba(255, 250, 243, 0.72);
}

.havlora-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
	gap: 44px;
}

.havlora-footer__brand {
	display: inline-block;
	margin-bottom: 18px;
	color: #fffaf3;
	font-size: 2.4rem;
	text-decoration: none;
}

.havlora-footer h2 {
	margin: 0 0 18px;
	color: #fffaf3;
	font-family: inherit;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.havlora-footer a {
	display: block;
	margin-bottom: 10px;
	color: rgba(255, 250, 243, 0.72);
	text-decoration: none;
}

.havlora-footer a:hover,
.havlora-footer a:focus-visible {
	color: #fffaf3;
}

.havlora-footer__bottom {
	margin-top: 54px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 250, 243, 0.52);
	font-size: 0.85rem;
}

@media (max-width: 921px) {
	.havlora-category-grid,
	.havlora-trust__grid,
	.havlora-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.havlora-story__grid,
	.havlora-faq__grid {
		grid-template-columns: 1fr;
	}

	.havlora-trust__grid div:nth-child(2) {
		border-right: 0;
	}
}

@media (max-width: 640px) {
	.havlora-shell {
		width: min(100% - 28px, 1180px);
	}

	.havlora-home-header__inner {
		grid-template-columns: 1fr auto;
		min-height: 74px;
	}

	.havlora-home-header__brand {
		font-size: 1.7rem;
	}

	.havlora-home-header__nav {
		display: none;
	}

	.havlora-home-header__cart {
		font-size: 0.68rem;
	}

	.havlora-hero {
		min-height: 620px;
		background-image: linear-gradient(180deg, rgba(25, 20, 16, 0.28), rgba(25, 20, 16, 0.76)), var(--havlora-hero-image);
	}

	.havlora-hero__inner {
		padding-bottom: 58px;
	}

	.havlora-hero h1 {
		font-size: clamp(4rem, 19vw, 6rem);
	}

	.havlora-section__header--split {
		align-items: start;
		flex-direction: column;
	}

	.havlora-category-grid,
	.havlora-trust__grid,
	.havlora-footer__grid {
		grid-template-columns: 1fr;
	}

	.havlora-category {
		min-height: 280px;
	}

	.havlora-trust__grid div,
	.havlora-trust__grid div:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid var(--havlora-line);
	}

	.havlora-trust__grid div:last-child {
		border-bottom: 0;
	}
}
