:root {
	--fazi-bg: #f7f3ee;
	--fazi-surface: #ffffff;
	--fazi-text: #211f1c;
	--fazi-muted: #6f675d;
	--fazi-line: #ddd4c9;
	--fazi-red: #9d1f1f;
	--fazi-red-dark: #751616;
	--fazi-gold: #c39a4a;
	--fazi-green: #2f6b4f;
	--fazi-radius: 8px;
	--fazi-container: 1180px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--fazi-bg);
	color: var(--fazi-text);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
}

a {
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	width: min(100% - 32px, var(--fazi-container));
	margin-inline: auto;
}

.container--narrow {
	--fazi-container: 820px;
}

.site-header {
	background: var(--fazi-surface);
	border-bottom: 1px solid var(--fazi-line);
}

.site-header__inner,
.site-footer__inner {
	width: min(100% - 32px, var(--fazi-container));
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0;
}

.site-brand {
	text-decoration: none;
	font-weight: 800;
	font-size: 1.2rem;
}

.site-nav__menu,
.site-footer__menu {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
	padding: 0;
}

.site-nav__menu a,
.site-footer__menu a {
	text-decoration: none;
	color: var(--fazi-muted);
}

.site-nav__menu a:hover,
.site-footer__menu a:hover {
	color: var(--fazi-red);
}

.site-main {
	min-height: 65vh;
}

.hero {
	background: linear-gradient(135deg, #351c19, #8f1f1f);
	color: #fff;
	padding: 72px 0;
}

.hero__inner {
	max-width: 780px;
}

.hero h1 {
	margin: 0 0 16px;
	font-size: clamp(2.2rem, 6vw, 4.75rem);
	line-height: 1;
}

.hero p {
	max-width: 640px;
	margin: 0 0 24px;
	font-size: 1.15rem;
}

.eyebrow {
	color: #f3c76d;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: var(--fazi-radius);
	background: var(--fazi-gold);
	color: #211f1c;
	text-decoration: none;
	font-weight: 700;
	border: 1px solid transparent;
}

.button--secondary {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
}

.content-section {
	padding: 48px 0;
}

.section-heading {
	margin-bottom: 24px;
}

.section-heading h1,
.section-heading h2,
.entry h1,
.archive-header h1 {
	margin: 0 0 8px;
	line-height: 1.15;
}

.section-heading p,
.archive-header__description,
.product-card__excerpt,
.post-summary__excerpt {
	color: var(--fazi-muted);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 18px;
}

.product-card,
.post-summary,
.notice {
	background: var(--fazi-surface);
	border: 1px solid var(--fazi-line);
	border-radius: var(--fazi-radius);
	overflow: hidden;
}

.product-card__link {
	display: block;
	height: 100%;
	text-decoration: none;
}

.product-card__image {
	aspect-ratio: 4 / 3;
	margin: 0;
	background: #e8ded2;
	overflow: hidden;
}

.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-card__placeholder {
	aspect-ratio: 4 / 3;
	display: grid;
	place-items: center;
	gap: 8px;
	padding: 18px;
	background:
		linear-gradient(135deg, rgba(157, 31, 31, 0.12), rgba(195, 154, 74, 0.18)),
		#efe6dc;
	color: var(--fazi-red-dark);
	text-align: center;
	text-decoration: none;
}

.product-card__placeholder-mark {
	width: 52px;
	height: 52px;
	border: 2px solid currentColor;
	border-radius: 50%;
	position: relative;
}

.product-card__placeholder-mark::before,
.product-card__placeholder-mark::after {
	content: "";
	position: absolute;
	left: 13px;
	right: 13px;
	height: 2px;
	background: currentColor;
}

.product-card__placeholder-mark::before {
	top: 18px;
}

.product-card__placeholder-mark::after {
	top: 30px;
}

.product-card__placeholder-text {
	font-weight: 800;
}

.product-card__body,
.post-summary,
.notice {
	padding: 18px;
}

.product-card__title {
	margin: 0 0 8px;
	font-size: 1.1rem;
}

.product-card__price {
	margin: 14px 0 0;
	display: grid;
	gap: 2px;
}

.product-card__price span {
	color: var(--fazi-muted);
	font-size: 0.85rem;
}

.product-card__price strong {
	color: var(--fazi-red);
	font-size: 1.25rem;
}

.product-card__actions {
	margin: 14px 0 0;
}

.product-card__action {
	color: var(--fazi-red);
	font-weight: 800;
	text-decoration: none;
}

.product-card__action:hover,
.product-card__action:focus {
	text-decoration: underline;
}

.entry__content > *:first-child {
	margin-top: 0;
}

.fazi-b2b-request {
	max-width: 760px;
}

.fazi-b2b-request__intro {
	color: var(--fazi-muted);
}

.fazi-b2b-form {
	display: grid;
	gap: 16px;
}

.fazi-b2b-form__field,
.fazi-b2b-form__actions {
	margin: 0;
}

.fazi-b2b-form label {
	display: grid;
	gap: 6px;
	font-weight: 700;
}

.fazi-b2b-form input[type="text"],
.fazi-b2b-form input[type="email"],
.fazi-b2b-form input[type="tel"],
.fazi-b2b-form select,
.fazi-b2b-form textarea {
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--fazi-line);
	border-radius: var(--fazi-radius);
	background: #fff;
	color: var(--fazi-text);
	font: inherit;
	padding: 10px 12px;
}

.fazi-b2b-form textarea {
	min-height: 128px;
	resize: vertical;
}

.fazi-b2b-form input:focus,
.fazi-b2b-form select:focus,
.fazi-b2b-form textarea:focus {
	outline: 3px solid rgba(195, 154, 74, 0.35);
	outline-offset: 2px;
	border-color: var(--fazi-gold);
}

.fazi-b2b-form__field--checkbox label {
	display: grid;
	grid-template-columns: 20px 1fr;
	align-items: start;
	gap: 10px;
	font-weight: 500;
}

.fazi-b2b-form__field--checkbox input {
	margin-top: 4px;
}

.fazi-b2b-form__actions button {
	min-height: 44px;
	border: 0;
	border-radius: var(--fazi-radius);
	background: var(--fazi-red);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	padding: 10px 18px;
}

.fazi-b2b-form__actions button:hover,
.fazi-b2b-form__actions button:focus {
	background: var(--fazi-red-dark);
}

.site-footer {
	background: #211f1c;
	color: #f7f3ee;
}

.site-footer p {
	margin: 0;
}

@media (max-width: 720px) {
	.site-header__inner,
	.site-footer__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}
