.hero-men {
	min-height: clamp(560px, 74vh, 780px);
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
	position: relative;
	isolation: isolate;
}

.hero-men::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(20, 20, 20, 0.72), rgba(20, 20, 20, 0.2) 52%, rgba(20, 20, 20, 0.06));
	z-index: -1;
}

.hero-men__content {
	width: min(720px, calc(100% - 48px));
	margin: 0 auto 72px;
	color: #ffffff;
	transform: translateX(calc((min(var(--page-max), 100vw - 48px) - 100vw + 48px) / -2));
}

.hero-men h1 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(42px, 5.2vw, 82px);
	font-weight: 500;
	line-height: 0.98;
	max-width: 760px;
}

.hero-men p:not(.eyebrow) {
	max-width: 560px;
	margin: 18px 0 0;
	font-size: 17px;
	line-height: 1.7;
}

.hero-men__actions {
	display: flex;
	gap: 12px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.category-tiles {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
	padding: 28px 0 44px;
	border-bottom: 1px solid var(--color-line);
}

.category-tile {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--color-soft);
	border-radius: 4px;
}

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

.category-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58));
}

.category-tile span {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 14px;
	z-index: 1;
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

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

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}

.section-heading h2,
.editorial-strip h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(30px, 3vw, 48px);
	font-weight: 500;
	line-height: 1.05;
}

.featured-products {
	padding: 54px 0;
}

.editorial-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-block: 32px 70px;
	padding: 34px 0;
	border-block: 1px solid var(--color-line);
}

.site-footer {
	background: #171717;
	color: #ffffff;
	padding: 54px 0 26px;
}

.site-footer__inner {
	width: min(var(--page-max), calc(100% - 48px));
	margin-inline: auto;
}

.newsletter {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
	align-items: end;
	gap: 32px;
	padding-bottom: 42px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.newsletter h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(28px, 3vw, 46px);
	font-weight: 500;
	line-height: 1.08;
}

.newsletter-form {
	display: flex;
	gap: 10px;
}

.newsletter-form input {
	min-width: 0;
	flex: 1;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.36);
	background: transparent;
	color: #ffffff;
	padding: 0 12px;
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.68);
}

.newsletter-form button {
	border-color: #ffffff;
	background: #ffffff;
	color: #171717;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 44px;
	padding: 34px 0;
}

.footer-links h3 {
	margin: 0 0 14px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.footer-links p,
.footer-links a,
.site-footer__bottom {
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	padding-top: 20px;
	font-size: 12px;
}

.content-page {
	padding-block: 58px 78px;
}

.page-header h1,
.content-card h1,
.content-card h2,
.not-found-page h1 {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.08;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.content-card {
	border: 1px solid var(--color-line);
	padding: 24px;
	border-radius: 4px;
}

/* Visual-Fit-02 start */
.category-tiles {
	gap: 14px;
	padding: 30px 0 44px;
}

.category-tile {
	border-radius: 3px;
	border: 1px solid rgba(20, 20, 20, 0.06);
	box-shadow: 0 1px 0 rgba(20, 20, 20, 0.04);
}

.category-tile::after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 28%, rgba(0, 0, 0, 0.68));
}

.category-tile span {
	bottom: 16px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.category-tile:hover {
	text-decoration: none;
}

.section-heading {
	margin-bottom: 26px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--color-line);
}

.newsletter {
	grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
	align-items: center;
}

.newsletter .eyebrow {
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.42);
}

.newsletter-form input {
	height: 46px;
	border-color: rgba(255, 255, 255, 0.42);
}

.newsletter-form button {
	min-height: 46px;
	padding-inline: 22px;
}

.footer-links {
	grid-template-columns: 1.2fr 1.2fr 1fr;
	gap: clamp(42px, 7vw, 110px);
}
/* Visual-Fit-02 end */
